I have table,
>dt
ID Date
001 13-Jan-2016
002 2016-01-10
003 15-Jan-2016
004 2016-01-09
005 2016-01-11
and, I want to make my table like this
>dt
ID Date
004 09-Jan-2016
002 10-Jan-2016
005 11-Jan-2016
001 13-Jan-2016
003 15-Jan-2016
I want to set default for the Date variable and make it order. What should I do? Thanks.