I need a SQL query that returns all the reserved words used in PostgreSQL database.
1 Answer
Postgres provides the set-returning function pg_get_keywords() for that:
select *
from pg_get_keywords()
The columns of the result are documented in the manual