TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
SQL Server Transact Basic to Expert - Alter Table Query
Karthikeyan Anbarasan
May 10, 2011
3
k
0
0
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
SQL Server Transact Basic to Expert - Alter Table Query
This blog shows how to alter an existing table using the alter command
Syntax:
Alter table Tablename
Add (Column name datatype null/not null)
Example:
Alter table emptable
Add (empSalary int Not Null)
SQL Server Transact Basic to Expert - Alter Table Query
Next Recommended Reading
SQL Server Transact Basic to Expert - Query a temporary and a table variable tables