sql server查询字段在哪个表

select tab.name as tableName,co.name as colName 
from sys.syscolumns co
join sys.tables tab on co.id=tab.object_id
where co.name like '字段名%'

 

posted @ 2023-07-20 16:01  正怒月神  阅读(49)  评论(0编辑  收藏  举报