数据库问题:如何通过查询数据返回表名
我有很多张表大部分表里只有一个列名为站名我想通过查询站名里的数据来返回该表的表名这样操作的sql语句应该怎么写呢...
我有很多张表 大部分表里只有一个列名为 站名
我想通过查询站名里的数据来返回该表的表名
这样操作的sql语句应该怎么写呢 展开
我想通过查询站名里的数据来返回该表的表名
这样操作的sql语句应该怎么写呢 展开
1个回答
展开全部
create table abc (id int identity(1,1),ctablName varchar(50),cfieldvalues varchar(200))
declare @tab varchar(50)
set @tab=''
declare cur cursor for
select name from sys.objects where type='u' and name<>'abc'
open cur
fetch next from cur into @tab
while @@fetch_status=0
begin
exec(' insert into abc (ctablName,cfieldvalues) select '''+@tab+''',站名 from '+@tab)
fetch next from cur into @tab
end
close cur
deallocate cur
select * from abc where cfieldvalues='站名的数据'
declare @tab varchar(50)
set @tab=''
declare cur cursor for
select name from sys.objects where type='u' and name<>'abc'
open cur
fetch next from cur into @tab
while @@fetch_status=0
begin
exec(' insert into abc (ctablName,cfieldvalues) select '''+@tab+''',站名 from '+@tab)
fetch next from cur into @tab
end
close cur
deallocate cur
select * from abc where cfieldvalues='站名的数据'
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询