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

SQL LIMIT avec la clause WHERE

select * from myVIew  where type=3 LIMIT 10;

Limit devrait être après la where clause .

Syntaxe :

SELECT column_name(s)
FROM table_name
[WHERE]
LIMIT number;