Home > Database > Mysql Tutorial > body text

This version of MySQL doesn't yet support 'LIMI...解决_MySQL

WBOY
Release: 2016-06-01 13:31:40
Original
1419 people have browsed it

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)
Copy after login

但是,只要你再来一层就行。。如:

select * from table where id in (select t.id from (select * from table limit 10)as t)
Copy after login

 


bitsCN.com
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!