MDB query for Time

187 Views Asked by At

I have table as

Id Name Date        Time

1  S    1-Dec-2009  9:00

2  N    1-Dec-2009  10:00

1  S    1-Dec-2009  10:30

1  S    1-Dec-2009  11:00

2  N    1-Dec-2009  11:10

Need query to display as

Id Name Date        Time

1  S    1-Dec-2009  9:00

1  S    1-Dec-2009  11:00

2  N    1-Dec-2009  10:00

2  N    1-Dec-2009  11:10

My backend database is MS Access and using VB6 for Max and Min time

1

There are 1 best solutions below

1
On

I would make an additional two [int] columns, say hour and minute and then use an MS Access query to sort them. It would be MUCH easier to call that in VB. The query itself would be something like the following:

SELECT * FROM YOURTABLE ORDER BY id, hour, minute;