I want to increase the data type of varchar(100) to varchar(200)?without any loss of data in the existing table?HOW
waqar100 0 Newbie Poster
Recommended Answers
Jump to PostI want to increase the data type of varchar(100) to varchar(200)?without any loss of data in the existing table?HOW
ALTER TABLE table_name
MODIFY COLUMN col_name varchar(200)
All 3 Replies
kvprajapati 1,826 Posting Genius Team Colleague
pinkygirl -3 Junior Poster in Training
crishlay 0 Junior Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.