PostgreSQL
 sql >> Datenbank >  >> RDS >> PostgreSQL

SQL LIMIT mit WHERE-Klausel

select * from myVIew  where type=3 LIMIT 10;

Limit sollte nach where clause stehen .

Syntax:

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