看看這個簡單的查詢現在MySQL中有沒有辦法選擇返回行的開始和結束的順序?
SELECT id FROM users
,說我想有用戶id
小號訂購4,5,7,8,那麼我不關心中間,最後我想在最後的是55,56,58
那麼返回的行會是這樣的(\娜新行)
4 // explicitly chose these as the start rows
5 // " "
7 // " "
8 // " "
44 // these just come in any order (order not important)
23 // " "
10 // " "
55 // explicitly chose these as the end rows
56 // " "
58 // " "
如何修改上面的查詢做到這一點?由於
聰明!你真的瞭解你的SQL OMG小馬!謝謝... – alex 2010-08-10 04:09:32