PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

SQL LIMIT con clausola WHERE

select * from myVIew  where type=3 LIMIT 10;

Limit dovrebbe essere dopo la where clause .

Sintassi:

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