Database/MSSQL
컬럼명으로 테이블 찾기
빅셔
2011. 3. 7. 17:22
select a.name from sysobjects a,syscolumns b
where a.id = b.id
and b.name like '%찾을컬럼명%'