I have a student table with a test date column and I want to create a query that will order by date from the oldest first to new and that all the columns that have null in it will be the last
what I need
01/01/2020
15/02/2020
null
null
what i get
null
null
01/01/2020
15/02/2020
is it pussible do it without invoke 2 queries or add an additional column and use then order..
tnx