首頁  >  文章  >  資料庫  >  This version of MySQL doesn't yet support 'LIMI...解决_MySQL

This version of MySQL doesn't yet support 'LIMI...解决_MySQL

WBOY
WBOY原創
2016-06-01 13:31:401458瀏覽

bitsCN.com

This version of MySQL doesn't yet support 'LIMI...解决

 

This version of MySQL doesn't yet support 'LIMIT & IN/ALL/ANY/SOME subquery'的意思是,这版本的 MySQL 不支持使用 LIMIT 子句的 

 

IN/ALL/ANY/SOME 子查询,即是支持非 IN/ALL/ANY/SOME 子查询的 LIMIT 子查询。

 

也就是说,这样的语句是不能正确执行的。 

 

select * from table where id in (select id from table limit 10)

 

 

但是,只要你再来一层就行。。如: 

 

select * from table where id in (select t.id from (select * from table limit 10)as t)

 


bitsCN.com
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn