谁知道MSSQL 2005查询某个记录所在的表
谁知道MSSQL2005查询某个记录所在的表的SQL语句怎么写的。我是菜鸟..希望大鸟们帮帮小弟。我已经知道该数据和数据所对应的字段名称。...
谁知道MSSQL 2005查询某个记录所在的表的SQL语句怎么写的。
我是菜鸟..希望大鸟们帮帮小弟。
我已经知道该 数据和 数据所对应的字段名称。 展开
我是菜鸟..希望大鸟们帮帮小弟。
我已经知道该 数据和 数据所对应的字段名称。 展开
1个回答
展开全部
declare @lie varchar(50),@shuju varchar(100),@table varchar(50)
select @lie ='列名',@shuju ='数据'
declare @t table (ftable varchar(50))
insert into @t
select a.name from sys .tables a
left join sys .columns b on a.object_id =b.object_id
where b.name =@lie
while exists(select 1 from @t)
begin
select top 1 @table=ftable from @t
exec('if exists(select 1 from '+@table+' where '+@lie+'='''+@shuju+''') select '''+@table+'''')
delete from @t where ftable =@table
end
select @lie ='列名',@shuju ='数据'
declare @t table (ftable varchar(50))
insert into @t
select a.name from sys .tables a
left join sys .columns b on a.object_id =b.object_id
where b.name =@lie
while exists(select 1 from @t)
begin
select top 1 @table=ftable from @t
exec('if exists(select 1 from '+@table+' where '+@lie+'='''+@shuju+''') select '''+@table+'''')
delete from @t where ftable =@table
end
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询