SQL: ALTER TABLE emp ADD DateOfBirth date
To insert the new column after a specific column, such as name, use this statement:
MySQl:
ALTER TABLE abc ADD empname VARCHAR(60) AFTER deptname;
If you want the new column to be first, use this statement:
ALTER TABLE abc ADD empname VARCHAR(60) FIRST;
Renaming a table
ALTER TABLE abc RENAME TO xyz