SQL 2000 将字符串转换为表名
请问大家,我的test表里面的一个字段存储的是数据库中用户表的名称,现在,我想通过从该表里面读取数据表的名称的方法来删除对应的表,应该怎么办呢我自己解决的答案是:decl...
请问大家,我的test表里面的一个字段存储的是数据库中用户表的名称,现在,我想通过从该表里面读取数据表的名称的方法来删除对应的表,应该怎么办呢
我自己解决的答案是:
declare @nm as char(20)
select top 1 @nm=col1 from test where col1 like 'op%'
select @nm
declare @strsql as nchar(50)
set @strsql='drop table '+@nm
exec sp_executesql @strsql
大家有更好的方法吗 展开
我自己解决的答案是:
declare @nm as char(20)
select top 1 @nm=col1 from test where col1 like 'op%'
select @nm
declare @strsql as nchar(50)
set @strsql='drop table '+@nm
exec sp_executesql @strsql
大家有更好的方法吗 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询