You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SELECTt.relnameas table_name, i.relnameas index_name, a.attnameas column_name
FROM pg_class t
LEFT JOIN pg_index ix ON (t.oid=ix.indrelid)
LEFT JOIN pg_class i ON (i.oid=ix.indexrelid)
LEFT JOIN pg_attribute a ON (a.attrelid=t.oid )
WHEREa.attnum= ANY(ix.indkey) ANDt.relkind='r'ORDER BY table_name, index_name;
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: