Learn SQL
  • SQL Tutorial
  • Untitled
  • Table Structure
    • Create Table
    • Alter Table
    • Drop Table
Powered by GitBook
On this page
  1. Table Structure

Alter Table

Add column

add column
ALTER TABLE `u367669158_tutor`.`students`
ADD email VARCHAR(30) not NULL;

Modify column

modify column
ALTER TABLE `u367669158_tutor`.`students`
MODIFY email INT(20) NULL;

Drop column

drop column
ALTER TABLE `u367669158_tutor`.`students`
DROP COLUMN email;
PreviousCreate TableNextDrop Table

Last updated 6 years ago