2010年11月26日

SQL SERVER中查找某个字段位于哪些表

摘要: 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 lik... 阅读全文

posted @ 2010-11-26 18:44 左直拳 阅读(175) 评论(0) 推荐(0) 编辑

导航