Image may be NSFW.
Clik here to view.
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.
Image may be NSFW.
Clik here to view.
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.