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

sql执行报错--This version of MySQL doesn't yet support 'LIMIT & IN/ALL/ANY/SOME subquery'

时间:2016-08-18 10:07:54      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:

问题:

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

解决:

  将语句:select * from table where id in (select id from table limit 0,10)

  变更为:select * from table where id in (select t.id from (select * from table limit 0,10)as t) 

sql执行报错--This version of MySQL doesn't yet support 'LIMIT & IN/ALL/ANY/SOME subquery'

标签:

原文地址:http://www.cnblogs.com/start-fxw/p/5782813.html

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