0

假设,我有一个临时表 #Temp1,其中有两列 Name 和 Nationality 作为 Varchar(50) 数据类型,并且该表有一些记录。我从这个表(#temp1)创建另一个临时表作为#Temp2。现在我希望在该临时表中添加另一列,将 PhoneNo 作为 Int 并将 Gender 作为 Char 数据类型。我该如何做到这一点?

Begin Tran
Create table #Temp1(
    Name    Varchar(50),
    Nationality Varchar(50)
);

Insert Into #Temp1 (Name, Nationality) Values ('Jayaraj','Indian');

Select Identity(Int,1,1) SlNo, Name Into #Temp2
From #Temp1 Order By Nationality    

-- Now the actual issue begins. I wish to alter the #Temp2 table.
-- So I try to alter the table, to add column Phone and Gender

Alter Table #Temp2
Add(
    Phone Int,
    Gender Char
);

Select * from #Temp2

-- Upon Executing I get this error : 
/*
  Msg 102, Level 15, State 1, Line 16
  Incorrect syntax near '('.
*/

Rollback

谢谢帮忙。。

4

2 回答 2

2

你可以这样做:

Alter Table #Temp2
Add Phone Int, Gender Char

只需删除“()”。:-)

于 2015-03-25T06:00:28.370 回答
0

用这个syntax

ALTER TABLE #Temp2
ADD Phone Int

ALTER TABLE #Temp2
ADD Gender Char
于 2015-03-25T06:00:15.270 回答