By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
create table people (id integer primary key, birth int)
insert into people (birth) values (100),(42),(16),(null)
select * from people
order by -birth desc
id | birth |
---|---|
3 | 16 |
2 | 42 |
1 | 100 |
4 | null |