SELECT (FROM MATERIALIZED VIEW)
Syntax
SELECT
expression AS alias [, ...]
FROM relation_name
[WHERE where_clause]
[GROUP BY group_by_clause]
[HAVING having_clause]
[ORDER BY order_by_clause [ASC | DESC] [NULLS [FIRST | LAST]] ]
[LIMIT number];Description
Arguments
FROM <relation_name>
WHERE <where_clause>
GROUP BY <group_by_clause>
HAVING <having_clause>
ORDER BY <order_by_clause>
LIMIT <number>
Examples
Select all
Filter records
Order and limit results
Run grouping and aggregation
Last updated

