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 existing column Definition
Karthikeyan Anbarasan
Jun 07, 2011
2.5
k
0
0
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
SQL Server Transact Basic to Expert - Alter existing column Definition
This blog shows on how to alter the existing table definition.
Syntax:
ALTER TABLE table_name
ALTER COLUMN column_name Datatype [NULL | NOT NULL]
Example:
Alter table emptable
Alter Column empsal Varchar(15) Null
SQL Server Transact Basic to Expert - Alter existing column Definition
Next Recommended Reading
SQL Server Transact Basic to Expert - Alter Table Query