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) 

转自:http://blog.csdn.net/sjzs5590/article/details/7337552

相关文章:

  • 2021-10-03
  • 2022-12-23
  • 2021-10-25
  • 2021-07-30
  • 2021-09-29
  • 2021-09-29
  • 2021-10-16
猜你喜欢
  • 2021-07-14
  • 2022-02-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案