Search Results

4
votes

How do I discover the structure of a PostgreSQL database?

SELECT table_name FROM information_schema.tables WHERE table_type = 'BASE TABLE' AND table_schema NOT IN ('pg_catalog', 'information_schema'); SELECT column_name …
0
votes

Searching for a string ‘somewhere’ in a database

I've used variants of this in the past. …