Daily Archives: May 15, 2012

Some useful commands of MySql

Add a column to an existing MySQL table : MySQL tables are easy to extend with additional columns. To add a column called email to table type the following command: ALTER TABLE tablename ADD email VARCHAR(20); To insert the new … Continue reading

Posted in MySQL | Leave a comment