evergreean43
Technical User
My time values from a field in my Access 2000 database wont sort correctly after I attempted to order them in my SQL:
11:2:10 A
11:36:35 A
12:37:54 P
12:37:56 P
7:46:12 A
8:44:18 A
9:52:50 A
My sort order results should look like this:
12:37:56 P
12:37:54 P
11:36:35 A
11:2:10 A
9:52:50 A
8:44:18 A
7:46:12 A
Here is my SQL:
11:2:10 A
11:36:35 A
12:37:54 P
12:37:56 P
7:46:12 A
8:44:18 A
9:52:50 A
My sort order results should look like this:
12:37:56 P
12:37:54 P
11:36:35 A
11:2:10 A
9:52:50 A
8:44:18 A
7:46:12 A
Here is my SQL:
Code:
select *
from myTable
order by theTime asc