🚨 Time is Running Out: Reserve Your Spot in the Lucky Draw & Claim Rewards! START NOW

Code has been added to clipboard!

SQL ALTER TABLE

Reading time 2 min
Published Aug 9, 2017
Updated Nov 20, 2019

TL;DR – The ALTER TABLE statement in SQL is used to delete, add, or modify table columns. You can also use it to drop and add various table constraints.

Adding a new column to the table

Example
ALTER TABLE mytable_name
ADD mycolumn_name datatype;

Note: the new column will be added to the end of the table by default. You can add multiple columns by separating them with commas.

Deleting a column

Example
ALTER TABLE mytable_name
DROP COLUMN mycolumn_name;

Changing the data type of a particular column

Note: when changing the data type, make sure the old one and the new one are compatible. Otherwise, you might get conversion errors.

In MySQL / Oracle (< 10G)

Example
ALTER TABLE mytable_name
MODIFY COLUMN mycolumn_name datatype;

In SQL Server / MS Access

Example
ALTER TABLE mytable_name
ALTER COLUMN mycolumn_name datatype;
DataCamp
Pros
  • Easy to use with a learn-by-doing approach
  • Offers quality content
  • Gamified in-browser coding experience
  • The price matches the quality
  • Suitable for learners ranging from beginner to advanced
Main Features
  • Free certificates of completion
  • Focused on data science skills
  • Flexible learning timetable
Udacity
Pros
  • Simplistic design (no unnecessary information)
  • High-quality courses (even the free ones)
  • Variety of features
Main Features
  • Nanodegree programs
  • Suitable for enterprises
  • Paid Certificates of completion
Udemy
Pros
  • Easy to navigate
  • No technical issues
  • Seems to care about its users
Main Features
  • Huge variety of courses
  • 30-day refund policy
  • Free certificates of completion

In Oracle 10G and later

Example
ALTER TABLE mytable_name
MODIFY mycolumn_name datatype;

Examples using a demo database

The Developers table

ID Name City Country
1 Tom Kurkutis New York USA
2 Ana Fernandez London UK
3 Antonio Indigo Paris France
4 Aarav Kaelin Delhi India
5 Andrew Tumota Miami USA
6 Basma Zlata Miami USA

Adding a column called BirthDate

Example
ALTER TABLE Developers
ADD BirthDate date;

The result

ID Name City Country BirthDate
1 Tom Kurkutis New York USA
2 Ana Fernandez London UK
3 Antonio Indigo Paris France
4 Aarav Kaelin Delhi India
5 Andrew Tumota Miami USA
6 Basma Zlata Miami USA

Changing the data type to year

Example
ALTER TABLE Developers
ALTER COLUMN BirthDate year;

Deleting the BirthDate column

Example
ALTER TABLE Developers
DROP COLUMN BirthDate;

The result

ID Name City Country
1 Tom Kurkutis New York USA
2 Ana Fernandez London UK
3 Antonio Indigo Paris France
4 Aarav Kaelin Delhi India
5 Andrew Tumota Miami USA
6 Basma Zlata Miami USA