Find A Table Column On SQL Server
Join the DZone community and get the full member experience.
Join For Free
SELECT name FROM sysobjects WHERE id IN ( SELECT id FROM syscolumns WHERE name = 'THE_COLUMN_NAME' )
sql
Database
Opinions expressed by DZone contributors are their own.
Comments