mysql order by desc null last

Solutions on MaxInterview for mysql order by desc null last by the best coders in the world

showing results for - "mysql order by desc null last"
Santiago
11 Nov 2019
1SELECT * FROM user 
2
3ORDER BY COALESCE(name, 'zz') DESC
4