When sorting a field in the attribute table, it would be helpful if we could specify how nulls are handled (NULLS FIRST vs. NULLS LAST).
For example (Oracle), I want to sort a date field descending so that the latest dates are at the top. But when I do that, 1) nulls are at the top, then 2) the latest dates are shown next, then 3) the first dates.

That's a nuisance when dealing with large tables. I need to painstakingly scroll down through nulls to get to the first instance of a non-null date in the list. (In my case, I had to scroll through 10,000 nulls...and then look for where the nulls stop and the dates start)
Sorting in ascending order doesn't help either.
It would be better if I could specify that I want the nulls to be last in the list, even though I'm sorting descending.
Maybe something like this:

Would something like that be possible?
Related: Allow using the ORDER BY clause in definition queries (SQL)