How to add a column in existing table?

 Posted by vishalneeraj-24503 on 1/13/2014 | Category: Sql Server Interview questions | Views: 1922 | Points: 40
Answer:

Suppose i have an Employee_Master table and i want to add Column LDAP and Supervisor as

Alter Table Employee_Master 

Add LDAP varchar(10),
Supervisor Int;


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response