mysql order by date asc null last

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

showing results for - "mysql order by date asc null last"
Luca
05 Jun 2018
1SELECT * FROM user 
2
3ORDER BY COALESCE(name, 'zz') DESC
4
Marie
18 May 2018
1ORDER BY IF(ISNULL(my_field),1,0),my_field ASC