Skip to main content

5.1 Basic Usage

Multiple orderBy actions

BookTable table = BookTable.$;

List<Book> books = sqlClient
.createQuery(table)
.orderBy(table.name().asc())
.orderBy(table.edition().desc())
.select(table)
.execute();

orderBy with mutiple arguments

There is another way to write the equivalent of the above code

BookTable table = BookTable.$;

List<Book> books = sqlClient
.createQuery(table)
.orderBy(
table.name().asc(),
table.edition().desc()
)
.select(table)
.execute();

However, the previous way of writing is more conducive to the organization of the code structure, so the previous way of writing is more recommended.

Sorting based on subqueries

BookTable table = BookTable.$;
AuthorTableEx author = AuthorTableEx.$;

List<Book> books = sqlClient
.createQuery(table)
.orderBy(
sqlClient
.createSubQuery(author)
.where(author.books().eq(table))
.select(Expression.rowCount())
.desc()
)
.select(table)
.execute();