Dear all,
I have used the following SQL query to get a list of all the tables that contain a particular term in the column name:
SELECT COLUMN_NAME, TABLE_NAME
FROM INFORMATION_SCHEMA.COLUMNS
WHERE COLUMN_NAME LIKE '%test%'
However I would like to write a query that looks through all the rows of each table for a particular value, is this possible?