EDUCBA Logo

EDUCBA

MENUMENU
  • Explore
    • EDUCBA Pro
    • PRO Bundles
    • Featured Skills
    • New & Trending
    • Fresh Entries
    • Finance
    • Data Science
    • Programming and Dev
    • Excel
    • Marketing
    • HR
    • PDP
    • VFX and Design
    • Project Management
    • Exam Prep
    • All Courses
  • Blog
  • Enterprise
  • Free Courses
  • Log in
  • Sign Up
Home Data Science Data Science Tutorials SQL Tutorial SQL ALTER TABLE
 

SQL ALTER TABLE

Updated May 31, 2023

SQL ALTER TABLE

 

 

Introduction to SQL ALTER TABLE

ALTER TABLE command in standard query language (SQL) is used to add, delete, or modify columns by renaming them or changing their data types in an existing data table. It is also used to add or remove constraints such as UNIQUE, NOT NULL, PRIMARY KEY, CHECK, etc., on the existing columns. ALTER is a Data Definition Language (DDL) command that has nothing to do with the records inside the data table. It is concerned only with the modification of the table structure.

Watch our Demo Courses and Videos

Valuation, Hadoop, Excel, Mobile Apps, Web Development & many more.

To begin with, let us learn the syntax used for writing ALTER TABLE statements in SQL.

Syntax and Parameters

Here are a few simplified versions of the syntaxes used for writing ALTER TABLE command :

(i) Adding a new column

ALTER TABLE table_name ADD column_name datatype;

(ii) Dropping an existing column

ALTER TABLE table_name DROP column_name;

(iii) Renaming an existing column

ALTER TABLE table_name RENAME column_name_old TO column_name_new;

(iv) Changing the data type of an existing column

ALTER TABLE table_name ALTER COLUMN column_name TYPE new_data_type;

(v) Adding a constraint on an existing column

ALTER TABLE table_name ADD CONSTRAINT constraint_name constraint_condition;

(v) Dropping an existing constraint

ALTER TABLE table_name DROP CONSTRAINT constraint_name ;

The parameters used in the above-mentioned syntaxes are as follows :

table_name: Table on which the ALTER statement is being executed

column_name: Column which is being added, deleted, or modified

constraint_name: Name of the constraint that has to be added or dropped

constraint_condition: Description of constraint which is being created

Examples of SQL ALTER TABLE

To illustrate working with ALTER TABLE statements in SQL, let us create a dummy table called “students.” Then, we can use the following code snippet to perform the said task.

CREATE TABLE students (
roll_no int NOT NULL PRIMARY KEY,
student_name VARCHAR(255),
degree_major VARCHAR(255) NOT NULL,
degree_year VARCHAR(255),
society VARCHAR(255)
);

Having created the student’s table, let us insert a few records in the table.

INSERT INTO students(
roll_no, student_name, degree_major, degree_year, society)
VALUES (1,'Mohith K','Computer Science Engineering','IV','Dramatics'),
(2,'Ayesha Khan','Electrical Engineering','I','Music'),
(3,'Kylie Green','Computer Science Engineering','III','Choreography'),
(4,'Alisha Rojer','Chemical Engineering','III','Music'),
(5,'Andy Bernard','Geosciences','IV','Dramatics');
select * from students;

SQL ALTER TABLE output 1

Now we are all set to try a few examples based on the ALTER statements with the help of the student’s table.

Example #1 – Adding a new column to an existing table

Add a new column “contact” of VARCHAR(255) datatype to the student’s table.

ALTER TABLE students
ADD COLUMN contact VARCHAR(255);

The command got executed successfully. Let’s check if the changes have been made in the table with the help of a SELECT statement.

SELECT * FROM students;

SQL ALTER TABLE output 2

The highlighted column in the image above is the newly added “contact” column.

Example 2 – Dropping an existing column

Drop the “contact” column from the student’s table.

Suppose the newly created column “contact” is no longer required in the student’s table. Then, we can delete it using the ALTER command.

ALTER TABLE students
DROP COLUMN contact;

Let’s see if the contacts column has been dropped or not.

SELECT * FROM students;

SQL ALTER TABLE output 3

It can be observed that the said column has been dropped successfully.

Example 3 – Renaming an existing column

Rename the “roll_no” column to “student_id” in the student’s table.

ALTER TABLE students
RENAME COLUMN roll_no to student_id;
SELECT * FROM students;

SQL ALTER TABLE output 4

The “roll_no” column in the student’s table has been successfully renamed to “student_id.”

Example #4 – Changing the data type of an existing column

Change the data type of the “student_id” column from INT to VARCHAR(50).

ALTER TABLE students
ALTER COLUMN student_id TYPE VARCHAR(50);

The data type of the student_id column has been successfully changed to VARCHAR or character varying. It can be observed from the image given below.

SELECT * FROM students;

SQL ALTER TABLE output 5

Example #5 – Adding NOT NULL Constraint on an existing column

Add a NOT NULL constraint on the “degree_year” column in the student’s table.

ALTER TABLE students
ALTER COLUMN degree_year SET NOT NULL;
select * from students;

SQL ALTER TABLE output 6

The NOT NULL constraint has been successfully added to the “degree_year” column. Here are a few INSERT statements to illustrate it further.

INSERT INTO students(
student_id, student_name, degree_major, degree_year, society)
VALUES (6,'Ron Weasley','chemistry',NULL,'Music');In this insert query, we tried to insert a NULL value in the degree_year column. It gave an error. Read the error message carefully. Now let’s try another query without any NULL values.
INSERT INTO students(
student_id, student_name, degree_major, degree_year, society)
VALUES (6,'Ron Weasley','chemistry','II','Music');

See, this one got executed successfully. The new row in the student’s table can be seen with the help of a SELECT statement.

SELECT * FROM students;

SQL ALTER TABLE output 8

Example #6 – Removing NOT NULL Constraint on an existing column

Remove NOT NULL constraint on the “degree_year” column in the student’s table.

ALTER TABLE students
ALTER COLUMN degree_year DROP NOT NULL;
select * from students;

The query returned successfully and shows the output as below.

output 9

Let us INSERT a new row with a NULL value for the “degree_year” column.

INSERT INTO students(
student_id, student_name, degree_major, degree_year, society)
VALUES (7,'Ross Geller','Paleontology',NULL,'Dramatics');

Unlike the previous example, the INSERT query was completed without any errors.

SELECT * FROM students;

output 10

Look at row no. 7; the degree_year value is NULL.

Example #7 – Adding CHECK Constraint on an existing column

ADD a CHECK constraint on the “degree_year” column in the student’s table such that it can hold values only in (I, II, III, IV, V).

ALTER TABLE students
ADD CONSTRAINT year_check CHECK(degree_year IN ('I','II','III','IV','V'));
select * from students;

output 11

The constraint has been successfully added. Let us write an INSERT query with degree_year, which does not satisfy the CHECK constraint.

INSERT INTO students(
student_id, student_name, degree_major, degree_year, society)
VALUES (8,'Harvey Ross','Chemistry','VI','Music');

output 12

As predicted, the server threw an error. Read the error carefully.

Now try another INSERT query with degree_year from within the said set.

INSERT INTO students(
student_id, student_name, degree_major, degree_year, society)
VALUES (8,'Harvey Ross','Chemistry','III','Music');

output 13

This one got executed successfully; ergo, the check constraint has been successfully applied.

Example #8 – Removing PRIMARY KEY Constraint on an existing column

Remove PRIMARY KEY constraint on the “student_id” column in the student’s table.

ALTER TABLE students
DROP CONSTRAINT students_pkey;

The students_pkey constraint was created during the CREATE TABLE statement. Now it has been successfully dropped. It is no longer mentioned under the constraints of the student’s table.

output 14

Example #9 – Adding PRIMARY KEY Constraint on existing columns

ADD PRIMARY KEY constraint on the “student_id” and “student_name” columns in the student’s table.

ALTER TABLE students
ADD CONSTRAINT students_pk PRIMARY KEY(student_id, student_name);

The query returned successfully. The newly created constraint “students_pk” can be observed under the constraints head.

output 15

Conclusion

The ALTER TABLE command in SQL is used to add, delete, rename, and modify existing tables and their columns. It becomes very useful in scenarios when we want to change the structure of an existing table without having to create a new table.

Recommended Articles

We hope that this EDUCBA information on “SQL ALTER TABLE” was beneficial to you. You can view EDUCBA’s recommended articles for more information.

  1. Primary Key in SQL
  2. Table in SQL
  3. SQL Alter Command
  4. PostgreSQL JDBC Driver

Primary Sidebar

Footer

Follow us!
  • EDUCBA FacebookEDUCBA TwitterEDUCBA LinkedINEDUCBA Instagram
  • EDUCBA YoutubeEDUCBA CourseraEDUCBA Udemy
APPS
EDUCBA Android AppEDUCBA iOS App
Blog
  • Blog
  • Free Tutorials
  • About us
  • Contact us
  • Log in
Courses
  • Enterprise Solutions
  • Free Courses
  • Explore Programs
  • All Courses
  • All in One Bundles
  • Sign up
Email
  • [email protected]

ISO 10004:2018 & ISO 9001:2015 Certified

© 2025 - EDUCBA. ALL RIGHTS RESERVED. THE CERTIFICATION NAMES ARE THE TRADEMARKS OF THEIR RESPECTIVE OWNERS.

EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you
EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you

EDUCBA
Free Data Science Course

Hadoop, Data Science, Statistics & others

By continuing above step, you agree to our Terms of Use and Privacy Policy.
*Please provide your correct email id. Login details for this Free course will be emailed to you
EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you
EDUCBA Login

Forgot Password?

Loading . . .
Quiz
Question:

Answer:

Quiz Result
Total QuestionsCorrect AnswersWrong AnswersPercentage

Explore 1000+ varieties of Mock tests View more

🚀 Limited Time Offer! - ENROLL NOW