首页 > 数据库 > SQL Server > 正文

Sql Server中用变量名作为表名的解决方案

2024-08-31 00:47:53
字体:
来源:转载
供稿:网友
中国最大的web开发资源网站及技术社区,

最近写procedure,遇到一些问题。其中我觉得关于“用变量名作为表名”的问题较有价值,写出和大家一起分享。请各位若有好的解决方案一定要不吝赐教。

情景:

如果你在写procedure时要根据特定变量的值动态创建table(表名是全部或部分特定变量的值)。例如:

declare @tablename        char(10)

//if some statement

set @tablename='test'

你想用变量@tablename的值作为表名创建一个新表,那么用create table @tablename (test char(8))语句在sql server 2k中执行就会遇到问题,

 

解决(接上例):

//如果表不存在则创建

if not exists (select name from sysobjects

        where name [email protected]  and type = 'u')

begin

[email protected]='create table '+ @tablename+' (myname       char(2))'

exec(@createtable)

end



<完>
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表