PostgreSQL: SELECT first schema in seach_path which a table name appears in
A query which accomplishes what is in the title would solve my problem. My problem: I want to extract column names and data types for a table. Here is my query for this: SELECT column_name, data_type FROM information_schema.columns WHERE table_name…