-- List all tables in the current database (all schemas)
SELECT schemaname, tablename
FROM pg_catalog.pg_tables
WHERE schemaname NOT IN ('pg_catalog', 'information_schema')
ORDER BY schemaname, tablename;
Created
August 4, 2026 09:38
-
-
Save swateek/bfe5663e0f9996874edf7d02fb67aae0 to your computer and use it in GitHub Desktop.
Working With Lakebase Postgres
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment