Suppose I have the following:
Name Date
----- -------------------
Alice 2013-02-10 15:17:00
Alice 2013-02-10 16:19:00
Alice 2013-02-10 17:21:00
Bob 2013-02-10 18:23:00
Alice 2013-02-10 19:25:00
This is what happens when I sort for date, then for name. It considers the hours first. What I really want is this:
Name Date
----- -------------------
Alice 2013-02-10 15:17:00
Alice 2013-02-10 16:19:00
Alice 2013-02-10 17:21:00
Alice 2013-02-10 19:25:00
Bob 2013-02-10 18:23:00
So, I want to sort first by %Y-%m-%d
, then by name.
Is that possible?
Thanks