SELECT
*
FROM
information_schema.tables;SELECT
*
FROM
information_schema.tables
WHERE
table_schema != 'pg_catalog';SELECT
table_name,
column_name,
data_type
FROM
information_schema.columns;SELECT
pg_get_functiondef(
'<FUNCTION_NAME>'::regproc
);- information_schema.tables
- information_schema.columns
- information_schema.triggers