I am currently try to sort date in ASC. If i used ASC it will sort the data will null date than the next date.
So i do something like this Select * from tblUser order by LastLogin and it will display the following
Name LastLogin
1. Peter NULL
2. Brian 2013-03-14
3. Jack 2013-03-15
But i want to return something this and please advise i can achieve this
1. Brian 2013-03-14
2. Jack 2013-03-15
3. Peter NULL