mysql不支援在子查詢中使用limit解決辦法

來源:互聯網
上載者:User

標籤:tab   測試   spm   mys   問題   mit   搜尋   sql語句   this   

mysql不支援在子查詢中使用limit解決辦法

 

This version of MySQL doesn’t yet support ‘LIMIT & IN/ALL/ANY/SOME subquery’

字面意思就是不支援在子查詢中使用limit關鍵字。

經過搜尋,找到了替代解決方案。


就是在limit的子查詢外層再加一層子查詢。

比如:

原先可能是報錯的sql語句是:select *from cidy where id in(select id from cidy limit 0,10);

經過修改的sql就是:select *from cidy where id in(select id from(select id from cidy limit 0,10));

經過測試,修改過的sql語句執行時報錯:Every derived table must have its own alias

錯誤的字面意思是:需要別名

從上面的sql語句中可以看到,我們多加的一層sql不僅沒有別名更沒有表名,會不會在這裡出問題呢?測一下就知道了~

經過修改後的sql語句就是:select *from cidy where id in(select id from(select id from cidy limit 0,10)as cd);

經過測試,如我們所想,終於成功了。

mysql不支援在子查詢中使用limit解決辦法

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.