Hi!
As I said in the title, I need to know which table contains a specific column. Would the following query work for that? What should I put in the from-clause?
SELECT COLUMN_NAME AS 'ColumnName', TABLE_NAME AS 'TableName'
FROM
WHERE COLUMN_NAME LIKE '%storage_instructions%'
ORDER BY TableName
,ColumnName;