Why are NULLs not sorted?


You might have a query that you wrote with 'ORDER BY something', and it shows NULLs at the bottom. Then you write it to have 'ORDER BY something DESC', but NULLs don't show up on the top. Although it sounds inconsistent, this is the way SQL standard requires. NULL is not a value, it's a state meaning 'value is unknown'. Since it is unknown, one cannot know whether it is higher or lower than any other value, and Firebird simply puts such records at the end.

If you wish to make your queries 'consistent', you can use NULLS FIRST clause in Firebird 1.5 or higher. If you consider NULLs to be higher than any other value, then use these queries:

select *
from EMPLOYEE
order by phone_ext;

select *
from EMPLOYEE
order by phone_ext desc nulls first;

However, if you consider NULL to be lower than any other value, use the following pair:

select *
from EMPLOYEE
order by phone_ext nulls first;

select *
from EMPLOYEE
order by phone_ext desc;


Do you find this FAQ incorrect or incomplete? Please e-mail us what needs to be changed. To ensure quality, each change is checked by our editors (and often tested on live Firebird databases), before it enters the main FAQ database. If you desire so, the changes will be credited to your name. To learn more, visit our add content page.



All contents are copyright © 2007-2024 FirebirdFAQ.org unless otherwise stated in the text.


Links   Firebird   News   FlameRobin   Powered by FB: Home Inventory   Euchre  
Add content   About  

Categories
 Newbies
 SQL
 Installation and setup
 Backup and restore
 Performance
 Security
 Connectivity and API
 HOWTOs
 Errors and error codes
 Miscellaneous