您的位置:首页 > 产品设计 > UI/UE

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

2017-06-10 10:34 736 查看
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) 

SELECT * FROM cleaneddetail WHERE cleanedid IN (

select t.id FROM(

select id from cleaneddata

order BY id

limit 0,100) AS t)

还有一种方法 join:

SELECT * FROM cleaneddetail c JOIN (

select id from cleaneddata

order BY id

limit 0,100) a ON c.cleanedid=a.id
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐