This question is locked. New answers and comments are not allowed.
How can I order data descending with null on the end?
In SQL I can do it:
In OQL it's not working:
What can I do instead?
In SQL I can do it:
select r from some_table AS rorder by r.some_column DESC NULLS LASTIn OQL it's not working:
select rfrom r.some_tableExtentorder by r.some_column DESC NULLS LASTWhat can I do instead?