查找某个字段位于哪些表的sql语句

发布时间:2020-05-05编辑:脚本学堂
查找某个字段位于哪些表

查找某个字段位于哪些表的sql语句
 

复制代码 代码如下:
select tab.name table_name, col.name column_name
  from sysobjects tab
  left join syscolumns col on tab.id = col.id and tab.xtype = 'U'
 where col.name like '%字段名%'
 order by 1,2