程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> MySQL中Union子句不支持order by的解決方法,union子句

MySQL中Union子句不支持order by的解決方法,union子句

編輯:MySQL綜合教程

MySQL中Union子句不支持order by的解決方法,union子句


本文實例講述了MySQL中Union子句不支持order by的解決方法。分享給大家供大家參考,具體如下:

我對DB知之甚少,這問題只在MySQL遇到,不知道別的DBMS是不是也如此。

問題是這樣的,我打算在一個表裡獲得與某一行記錄相鄰的兩行,並且想通過union一起取出來,所以這麼寫:

select id,title from subjects where id>#some_id# order by id limit 1
union
select id,title from subjects where id<#some_id# order by id limit 1

但出現了錯誤提示“Incorrect usage of UNION and ORDER BY”。看來不能這麼用union和order by,但這裡確實是需要order by的。很快,我想到了一個變通的寫法:

select * from (
select id,title from subjects where id>#some_id# order by id limit 1
) union
select id,title from subjects where id<#some_id# order by id limit 1

從經驗上說,第二個子句該不會被union影響,可以用order by。於是把第一個子句包在一個括號裡,這下應該就可以了。可是還是有錯誤,提示“ Every derived table must have its own alias”。這裡的提示是需要給我們括號裡面生成的臨時表取一個別名,這個好辦多了。於是改為:

select * from (
select id,title from subjects where id>#some_id# order by id limit 1
) as t1 union
select id,title from subjects where id<#some_id# order by id limit 1

這條語句成功執行並且得到了正確的結果,在此寫下來備忘。

更多關於MySQL相關內容感興趣的讀者可查看本站專題:《MySQL日志操作技巧大全》、《MySQL事務操作技巧匯總》、《MySQL存儲過程技巧大全》、《MySQL數據庫鎖相關技巧匯總》及《MySQL常用函數大匯總》

希望本文所述對大家MySQL數據庫計有所幫助。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved