
Hi,
I have a table in database. I want to add multiple columns into existing table. What is the code for mysql alter table add multiple columns?
Thanks

Hi,
You can use following query:
mysql> alter table employees
-> add column city varchar(30),
-> add column email varchar(30);
Read more at Mysql Alter Add Multiple Columns.
Thanks
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.