欢迎来到代码驿站!

MsSql

当前位置:首页 > 数据库 > MsSql

Sql 批量查看字符所在的表及字段

时间:2021-06-02 08:23:49|栏目:MsSql|点击:
复制代码 代码如下:

declare @str varchar(100)
set @str='8f8el3l'

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 Server 2005作业设置定时任务

栏    目:MsSql

下一篇:SQL中distinct的用法(四种示例分析)

本文标题:Sql 批量查看字符所在的表及字段

本文地址:http://www.codeinn.net/misctech/134006.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有