Quantcast
Channel: Tech Notes » mysql
Viewing all articles
Browse latest Browse all 6

MySQL Increase Column Size

$
0
0

An example of modifying a MySQL table to increase a VARCHAR column size:

alter table TABLE_NAME modify COLUMN_NAME VARCHAR(1024) NOT NULL;

This increases COLUMN_NAME to 1024 characters.


Viewing all articles
Browse latest Browse all 6

Trending Articles