Answers for "microsoft sql server search for column name in all tables"

SQL
12

sql server search column name in all tables

SELECT      COLUMN_NAME AS 'ColumnName'
            ,TABLE_NAME AS  'TableName'
FROM        INFORMATION_SCHEMA.COLUMNS
WHERE       COLUMN_NAME LIKE '%MyName%'
ORDER BY    TableName
            ,ColumnName;
Posted by: Guest on March-07-2020
2

search for column name in sql db when i don't know which table it is in

Select * from  INFORMATION_SCHEMA.COLUMNS
where COLUMN_NAME LIKE '%MyName%'
Posted by: Guest on September-23-2020

Code answers related to "microsoft sql server search for column name in all tables"

Code answers related to "SQL"

Browse Popular Code Answers by Language