Many ways to add column to existing table in MySQL. If you r using GUI tools, add column to table in MySQL is easy. If you are using CLI, then here’s the command to add column in MySQL table.
To add column in existing table, you may refer to the 2 examples below:-
Advertisements
Example I: Add new varchar column to the end of the table
ALTER TABLE `tablename_here` ADD `new_column_name` VARCHAR( 255 ) NOT NULL ;
Example II: Add new integer column after an existing column in table
ALTER TABLE `tablename_here` ADD `new_column_name` INT NOT NULL AFTER `existing_column` ;
It’s simple to add column to existing table right? 🙂
Related posts:
Composer: PHP Fatal error: Allowed memory size of ... exhausted...
How to setup syslog server in UBuntu 8
Symfony2: How to get Doctrine Entity Manager in Console command
How to flush DNS cache in Linux / Windows / Mac
How to set out of office auto responder in Zimbra
Free Anti Virus for Mac OS X - ClamXav
How to install SVN 1.6 on CentOS 5
WordPress Custom Taxonomy Pagination show 404 page not found error
Share this with your friends:-
ok. I already know how to do it:
alter table table_name add column user_id int, add foreign key(user_id) references user(id);
and if the new key is a constraint, like a foreign key?