>  기사  >  데이터 베이스  >  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:401420검색

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으로 문의하세요.