Sqlserver查找数据库中含有某字段的所有表

跟風遠走 提交于 2020-03-29 04:46:41

 

--同时含有语言编号字段的所有表

select a.[name] from sysobjects a,
(
    select [id],count(*) b from syscolumns
    where [name] ='F_LanguageCode'
    group by [id]
) b 
where a.[id]=b.[id]

--同时含有语言编号和排序字段的所有表

select a.[name] from sysobjects a
left join
(
    select [id],count(*) b from syscolumns where [name]
    in('F_LanguageCode','F_Order') group by [id] having count(*)>1
) b
on a.[id]=b.[id]
where b.id is not null

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!