0

我正在使用 SQL Server 2008 R2。现在我想编写一条 SQL 语句来查找该表的列中包含单词“happy”的表名。列名like '%abc'可能包含单词

谁能给我一些想法?

谢谢,V

4

1 回答 1

0

尝试这个 :

select obj.name 
    from sys.columns col join sys.tables obj
    on col.name like '%happy%'
      and col.object_id = obj.object_id
于 2012-06-27T06:01:06.943 回答