码迷,mamicode.com
首页 > 数据库 > 详细

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

时间:2014-07-21 14:13:39      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:使用   strong   io   re   c   sql   

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) 

This version of MySQL doesn't yet support 'LIMIT & IN/ALL/ANY/SOME subquery,布布扣,bubuko.com

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

标签:使用   strong   io   re   c   sql   

原文地址:http://www.cnblogs.com/htys/p/3858218.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!