Simple postgres SQL query to search for a column name within a DB schema
The query is as simple as that:
SELECT *
FROM information_schema.columns
WHERE column_name = ‘search_for_me’
The query is as simple as that:
SELECT *
FROM information_schema.columns
WHERE column_name = ‘search_for_me’