i have a question for you
initially i created table Test.Student.
- CREATE TABLE [Test].[STUDENT](
- [ID] [int] NULL,
- [Name] [nvarchar](50) NULL
- ) ON [PRIMARY]
- 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