如何對錶進行時間排序。這是從清晨六點T0晚上10點如何使用我的sql查詢對錶中的時間進行排序
name source destination time
gokul xxx yyyy 10.00 PM
abc xxx yyyy 6.00 AM
我想這個查詢在側子查詢仍然沒有工作
Select * from (
Select * from trips where date = '27-09-2013'
and time like '%PM' or '%pm' ORDER BY time
) AND (
Select * from trips where date = '27-09-2013'
and time like '%AM' or '%am' ORDER BY time
) AS TIME
ORDER BY TIME(time) DESC'
是字符串形式的時間,AM和PM?或實際的時間戳形式? – AdrianBR
它的一個varchar @AdrianBR,我嘗試了ORDER BY和LIKE,但它沒有手柄 – gokul