declare @str varchar(100)
set @str='66544789' --要搜索的字符串
declare @s varchar(8000)
declare tb cursor local for
select s='if exists(select 1 from ['+b.name+'] where ['+a.name+'] like ''%'+@str+'%'')
print ''所在的表及字段: ['+b.name+'].['+a.name+']'''
from syscolumns a join sysobjects b on a.id=b.id
where b.xtype='U' and a.status>=0
and a.xusertype in(175,239,231,167)
open tb
fetch next from tb into @s
while @@fetch_status=0
begin
exec(@s)
fetch next from tb into @s
end
close tb
deallocate tb
博客给出一段SQL代码,用于在数据库中搜索特定字符串。通过声明变量、使用游标,结合syscolumns和sysobjects表进行join操作,遍历所有用户表,查找包含特定字符串的字段,并打印出所在表和字段信息。

6640

被折叠的 条评论
为什么被折叠?



