Mysql
 sql >> Base de données >  >> RDS >> Mysql

Existe-t-il une alternative ANSI SQL au mot-clé MYSQL LIMIT ?

cela montre les différentes manières :

-- DB2
select * from table fetch first 10 rows only 
-- Informix 
select first 10 * from table 
-- Microsoft SQL Server and Access 
select top 10 * from table 
-- MySQL and PostgreSQL 
select * from table limit 10 
-- Oracle 
select * from (select * from table) where rownum <= 10