looking for a database field and you're not sure where it is ?
Try this, the stuff in yellow highlight needs to be changed for your situation....
Try this, the stuff in yellow highlight needs to be changed for your situation....
USE AdventureWorks
GO
SELECT t.name AS table_name,
SCHEMA_NAME(schema_id) AS schema_name,
c.name AS column_name
FROM sys.tables AS t
INNER JOIN sys.columns c ON t.OBJECT_ID = c.OBJECT_ID
WHERE c.name LIKE '%EmployeeID%'
ORDER BY schema_name, table_name;
Comments
Post a Comment