sqlserver查询所有表(或所有数据库)中出现的表数据
比如我有10个数据库data1到data10,在这十个数据库里每个库都有100个表,table1到table100,那么,在这一共1000个表里的记录都不重复,在其中一个...
比如我有10个数据库 data1到data10,在这十个数据库里每个库都有100个表,table1到table100,那么,在这一共1000个表里的记录都不重复,在其中一个表里存在一条记录正是我想查找的记录,要怎么查询?
展开
2个回答
展开全部
---
/*
以下是遍历一个数据库的
*/
use db
declare @sql varchar(500)
declare @tablename varchar(20)
declare test1 cursor
for
select name from sysobjects where xtype='U'
open test1
fetch next from test1 into @tablename
while @@FETCH_STATUS=0
begin
select @sql='select * from '+@tablename +' where name ='+'''李智'''
print @sql
begin try
print @sql
exec(@sql)
end try
begin catch
print 'error'
end catch
fetch next from test1 into @tablename
end
close test1
deallocate test1
go
/*
以下是遍历一个数据库的
*/
use db
declare @sql varchar(500)
declare @tablename varchar(20)
declare test1 cursor
for
select name from sysobjects where xtype='U'
open test1
fetch next from test1 into @tablename
while @@FETCH_STATUS=0
begin
select @sql='select * from '+@tablename +' where name ='+'''李智'''
print @sql
begin try
print @sql
exec(@sql)
end try
begin catch
print 'error'
end catch
fetch next from test1 into @tablename
end
close test1
deallocate test1
go
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询