You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Several database engines (PostgreSQL, Oracle, Sqlite, H2) have implemented support for SQL:2003's ORDER BY myField ASC NULLS FIRST syntax, that is to say, the ability to explicitly control whether NULL values should be sorted first or last.
Unfortunately, at the moment Exposed only supports the basic ASC and DESC options. While it is possible to create work-arounds, this is a rather hack-y approach.
The text was updated successfully, but these errors were encountered:
erwinw
changed the title
Misisng support for order by nulls first/last
Missing support for order by nulls first/last
Sep 14, 2021
Several database engines (PostgreSQL, Oracle, Sqlite, H2) have implemented support for SQL:2003's
ORDER BY myField ASC NULLS FIRST
syntax, that is to say, the ability to explicitly control whetherNULL
values should be sorted first or last.Unfortunately, at the moment Exposed only supports the basic
ASC
andDESC
options. While it is possible to create work-arounds, this is a rather hack-y approach.The text was updated successfully, but these errors were encountered: