2
Answers

Create a Table script

i have a question for you
initially i created table Test.Student.
 
  1. CREATE TABLE [Test].[STUDENT](  
  2.     [ID] [intNULL,  
  3.     [Name] [nvarchar](50) NULL  
  4. ON [PRIMARY]  
  5. GO  
Then i Added a new coloumn Class
 
i need to take the cretae script of the table using alter without droping the table.. 
help 
Answers (2)