0% found this document useful (0 votes)
2 views12 pages

SQL ALTER TABLE Command Overview

SQL commands

Uploaded by

keithlain4123
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views12 pages

SQL ALTER TABLE Command Overview

SQL commands

Uploaded by

keithlain4123
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Page 1 of 12

Home Whiteboard AI Assistant Online Compilers Jobs Tools Art

SQL HTML CSS Javascript Python Java C C++ PHP Scala C#

SQL - ALTER TABLE

SQL − ALTER TABLE Statement


The SQL ALTER TABLE command is a part of Data Definition Language (DDL) and
modifies the structure of a table. The ALTER TABLE command can add or delete columns,
create or destroy indexes, change the type of existing columns, or rename columns or
the table itself.

The ALTER TABLE command can also change characteristics of a table such as the
storage engine used for the table. We will make use of the following table in our
examples

ID NAME AGE ADDRESS SALARY

1 Ramesh 32 Ahmedabad 2000.00

2 Khilan 25 Delhi 1500.00

3 Kaushik 23 Kota 2000.00

4 Chaitali 25 Mumbai 6500.00

5 Hardik 27 Bhopal 8500.00

6 Komal 22 Hyderabad 4500.00

7 Advertisement
Muffy 24 Indore 10000.00
-

Syntax

Following is the basic syntax of an ALTER TABLE command −

[Link] 1/12
Page 2 of 12

ALTER TABLE table_name [alter_option ...];

Where, the alter_option depends on the type of operation to be performed on a table.


This article will discuss such important operations one by one.

ALTER TABLE − ADD Column


If you need to add a new column to a table, you should use the ADD COLUMN option
along with ALTER TABLE statement as shown below −

ALTER TABLE table_name ADD column_name datatype;

Example

Following is the example to ADD a New Column to an existing table −

Open Compiler
Advertisement
-
ALTER TABLE CUSTOMERS ADD SEX char(1);

Output

Executing the query above will produce the following output −

[Link] 2/12
Page 3 of 12

Query OK, 0 rows affected (0.09 sec)


Records: 0 Duplicates: 0 Warnings: 0

Verification

To verify whether the CUSTOMERS table is altered by adding a new column SEX, use the
SELECT statement to retrieve the records of the table −

Open Compiler

SELECT * FROM CUSTOMERS;

Now, the CUSTOMERS table will be displayed as follows −

ID NAME AGE ADDRESS SALARY SEX

1 Ramesh 32 Ahmedabad 2000.00 NULL

2 Khilan 25 Delhi 1500.00 NULL

3 Kaushik 23 Kota 2000.00 NULL

4 Chaitali 25 Mumbai 6500.00 NULL

5 Hardik 27 Bhopal 8500.00 NULL

6 Komal 22 Hyderabad 4500.00 NULL

7 Muffy 24 Indore 10000.00 NULL

ALTER TABLE − DROP COLUMN


If you need to drop an existing column from a table, you should use the DROP COLUMN
option along with ALTER TABLE statement as shown below.

Advertisement
ALTER TABLE table_name DROP COLUMN column_name;
-

Example

Following is the example to DROP sex column from the existing table.

[Link] 3/12
Page 4 of 12

Open Compiler

ALTER TABLE CUSTOMERS DROP COLUMN SEX;

Output

Executing the query above will produce the following output −

Query OK, 0 rows affected (0.07 sec)


Records: 0 Duplicates: 0 Warnings: 0

Verification

To verify whether the CUSTOMERS table is altered by dropping an existing column SEX,
use the SELECT statement to retrieve the records of the table −

Open Compiler

SELECT * FROM CUSTOMERS;

Now, the CUSTOMERS table is changed and following would be the output from the
SELECT statement.

ID NAME AGE ADDRESS SALARY

1 Ramesh 32 Ahmedabad 2000.00

2 Khilan 25 Delhi 1500.00

3 Kaushik 23 Kota 2000.00

4 Chaitali 25 Mumbai 6500.00

5 Hardik 27 Bhopal 8500.00


Advertisement
6 Komal 22 Hyderabad 4500.00
-

7 Muffy 24 Indore 10000.00

ALTER TABLE − ADD INDEX

[Link] 4/12
Page 5 of 12

You can add index to an existing column of a table using the ADD INDEX statement
along with the ALTER statement −

ALTER TABLE table_name


ADD INDEX index_name [index_type]

Example

Following query adds an index on the column NAME of CUSTOMERS table −

ALTER TABLE CUSTOMERS ADD INDEX name_index (NAME);

Output

The output will be displayed as −

Query OK, 0 rows affected (0.003 sec)


Records: 0 Duplicates: 0 Warnings: 0

ALTER TABLE − DROP INDEX


You can drop an existing index from a table using the DROP INDEX statement along with
the ALTER statement −

ALTER TABLE table_name DROP INDEX index_name;

Example

Following query adds an index on the column NAME of CUSTOMERS table −

ALTER TABLE CUSTOMERS DROP INDEX name_index;

Advertisement
-
Output

The output will be displayed as −

Query OK, 0 rows affected (0.003 sec)

[Link] 5/12
Page 6 of 12

Records: 0 Duplicates: 0 Warnings: 0

ALTER TABLE − ADD PRIMARY KEY


Following is the syntax to add a primary key in an existing table of a database −

ALTER TABLE table_name


ADD CONSTRAINT constraint_name
PRIMARY KEY (column1, column2...);

Example

Before we add a primary key to an existing table, first let's create a new table called
EMPLOYEES as follows:

CREATE TABLE EMPLOYEES(


ID INT NOT NULL,
NAME VARCHAR (20) NOT NULL,
AGE INT NOT NULL,
ADDRESS CHAR (25),
SALARY DECIMAL (18, 2)
);

Following query adds primary key constraint on the column ID of EMPLOYEES table −

ALTER TABLE EMPLOYEES


ADD CONSTRAINT MyPrimaryKey
PRIMARY KEY(ID);

This will produce the following output −

Query OK, 0 rows affected, 1 warning (0.003 sec)


Records: Advertisement
0 Duplicates: 0 Warnings: 1
-

Verification

To verify the above query if you describe the table using the DESC EMPLOYEES command

[Link] 6/12
Page 7 of 12

DESC EMPLOYEES;

This will display the structure of the table created: column names, their respective data
types, constraints (if any) etc.

Field Type Null Key Default Extra

ID int(11) NO PRI NULL

NAME varchar(20) NO NULL

AGE int(11) NO NULL

ADDRESS char(25) YES NULL

SALARY decimal(18,2) YES NULL

ALTER TABLE − DROP PRIMARY KEY


Following is the syntax to delete a primary key from an existing table of a database −

ALTER TABLE table_name DROP PRIMARY KEY;

Example

Following query deletes primary key constraint from the column ID of EMPLOYEES table

ALTER TABLE EMPLOYEES DROP PRIMARY KEY;

This will produce the following output −

Query OK, 0 rows affected, 1 warning (0.003 sec)


Records: 0 Duplicates: 0 Warnings: 1
Advertisement
-

ALTER TABLE − ADD CONSTRAINT


Following is the syntax to add a unique constraint to a column of an existing table −

ALTER TABLE table_name


ADD CONSTRAINT constraint_name

[Link] 7/12
Page 8 of 12

UNIQUE(column1, column2...);

Example
Following query adds UNIQUE constraint to the table CUSTOMERS −

ALTER TABLE EMPLOYEES ADD CONSTRAINT CONST UNIQUE(NAME);

This will produce the following output −

Query OK, 0 rows affected (0.003 sec)


Records: 0 Duplicates: 0 Warnings: 0

ALTER TABLE − DROP CONSTRAINT


Following is the syntax to drop a unique constraint from an existing table −

ALTER TABLE table_name DROP CONSTRAINT constraint_name;

Example
Following query adds UNIQUE constraint to the table CUSTOMERS −

ALTER TABLE EMPLOYEES DROP CONSTRAINT CONST;

This will produce the following output −

Query OK, 0 rows affected (0.003 sec)


Records: 0 Duplicates: 0 Warnings: 0

ALTER TABLE − RENAME COLUMN


Advertisement
-
Following is the syntax to rename a column name of an existing table −

ALTER TABLE table_name


RENAME COLUMN old_column_name to new_column_name;

[Link] 8/12
Page 9 of 12

Example
Following query renames NAME column in table CUSTOMERS −

Open Compiler

ALTER TABLE CUSTOMERS RENAME COLUMN name to full_name;

This will produce the following output −

Query OK, 0 rows affected (0.002 sec)


Records: 0 Duplicates: 0 Warnings: 0

ALTER TABLE − MODIFY DATATYPE


Following is the syntax to change the data type of any column in MySQL, MS Server and
Oracle.

SQL Server/MS Access Syntax

ALTER TABLE table_name ALTER COLUMN column_name datatype;

MySQL Syntax

ALTER TABLE table_name MODIFY COLUMN column_name datatype;

Oracle Syntax

ALTER TABLE table_name MODIFY COLUMN column_name datatype;

Advertisement
-
Example

Following query modifies datatype of SALARY column in MySQL CUSTOMERS table −

ALTER TABLE CUSTOMERS MODIFY COLUMN ID DECIMAL(18, 4);


Chapters Categories

[Link] 9/12
Page 10 of 12

This will produce the following output −

Query OK, 0 rows affected (0.003 sec)


Records: 0 Duplicates: 0 Warnings: 0

TOP TUTORIALS

Python Tutorial
Java Tutorial

C++ Tutorial
C Programming Tutorial
C# Tutorial

PHP Tutorial
R Tutorial
HTML Tutorial

CSS Tutorial
JavaScript Tutorial
SQL Tutorial

TRENDING TECHNOLOGIES

Cloud Computing Tutorial


Amazon Web Services Tutorial
Microsoft Azure Tutorial

Git Tutorial
Ethical Hacking Tutorial
Docker Tutorial

Kubernetes Tutorial
DSA Tutorial
Spring Boot Tutorial
Advertisement
SDLC Tutorial -

Unix Tutorial

CERTIFICATIONS

Business Analytics Certification

[Link] 10/12
Page 11 of 12

Java & Spring Boot Advanced Certification

Data Science Advanced Certification


Cloud Computing And DevOps
Advanced Certification In Business Analytics

Artificial Intelligence And Machine Learning


DevOps Certification
Game Development Certification

Front-End Developer Certification


AWS Certification Training
Python Programming Certification

COMPILERS & EDITORS

Online Java Compiler

Online Python Compiler


Online Go Compiler
Online C Compiler

Online C++ Compiler


Online C# Compiler
Online PHP Compiler

Online MATLAB Compiler


Online Bash Compiler
Online SQL Compiler

Online Html Editor

ABOUT US | OUR TEAM | CAREERS | JOBS | CONTACT US | TERMS OF USE |

PRIVACY POLICY | REFUND POLICY | COOKIES POLICY | FAQ'S

Advertisement
-

[Link] 11/12
Page 12 of 12

Tutorials Point is a leading Ed Tech company striving to provide the best learning material on
technical and non-technical subjects.

© Copyright 2025. All Rights Reserved.

Advertisement
-

[Link] 12/12

You might also like