sql数据中 怎么查询 一个库的所有表中含有123这个数字
3个回答
展开全部
是不是要遍历数据库呀
declare @str varchar(100)
set @str='张三' --要搜索的字符串
declare @s varchar(8000)
declare tb cursor local for
select s='if exists(select 1 from ['+b.name+'] where convert(varchar,['+a.name+']) like ''%'+@str+'%'')
print ''select ['+a.name+'] from ['+b.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,56,60,108,106)
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
declare @str varchar(100)
set @str='张三' --要搜索的字符串
declare @s varchar(8000)
declare tb cursor local for
select s='if exists(select 1 from ['+b.name+'] where convert(varchar,['+a.name+']) like ''%'+@str+'%'')
print ''select ['+a.name+'] from ['+b.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,56,60,108,106)
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
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
全文搜索也许能做到,去试试全文搜索,否则就编程序遍历的搜吧,先遍历所有表,再遍历所有的字段。
追问
全文搜索在哪里? Sql2000
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你说的是在sqlserver管理界面上,还是用编程?如果是编程,是什么语言?
遍历每个表、每行、每个字段不就行了吗?
遍历每个表、每行、每个字段不就行了吗?
更多追问追答
追问
sql 语句的话 怎么写? 我都忘了 嘿嘿 能告诉我么
追答
不知道,我只知道用.net的语句来遍历。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |