如果cnt=1,那么我想创建一个包含2列的临时表;如果cnt=2,那么我想创建一个包含3列但名称相同的临时表,如下所示。
Declare @cnt int
Set @cnt = 2
IF @cnt = 1
Begin
if OBJECT_ID('tempdb..#temptest') is not null drop table #temptest;
create table #temptest
( ID int,
M1 char(2)
);
end
IF @cnt = 2
begin
if OBJECT_ID('tempdb..#temptest') is not null drop table #temptest;
create table #temptest
( ID int,
M1 char(2),
M2 char(2)
);
end
我出错了
'数据库中已存在名为'#tentest'的对象。
怎么做。。请帮忙?
1条答案
按热度按时间frebpwbc1#
最简单的解决方案是创建包含所需最少列的temp表,然后根据@cnt的值根据需要添加列。试试这个: