PostgreSQL
 sql >> Base de Dados >  >> RDS >> PostgreSQL

SQL LIMIT com cláusula WHERE

select * from myVIew  where type=3 LIMIT 10;

Limit deve estar depois da where clause .

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