MySQL Alter TableModifying tables. MySQL ALTER TABLE Statement The ALTER TABLE statement is used to add, delete, or modify columns in an existing table. It is also used to add and drop various constraints on an existing table. ExampleALTER TABLE Customers ADD Email varchar(255);Try it Yourself PreviousNext