Abhinandhu K R

Abhinandhu K R

  • 1.2k
  • 225
  • 20.4k

Create a Table script

Jul 23 2020 7:03 AM
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)