โดยใช้คำสั่ง ALTER เราสามารถเพิ่มคอลัมน์ลงในตารางที่มีอยู่ได้
ไวยากรณ์
Alter table table-name ADD (column-name datatype);
ตัวอย่าง
ในตัวอย่างด้านล่าง ด้วยความช่วยเหลือของ ALTER Command คอลัมน์ 'GRADE' จะถูกเพิ่มลงในตาราง 'Student'
mysql> Alter table Student ADD (Grade Varchar(10)); Query OK, 5 rows affected (1.05 sec) Records: 5 Duplicates: 0 Warnings: 0