SQL - ALTER TABLE (2024)

SQL - ALTER TABLE (1)

SQL - ALTER TABLE (2)

Table of content
  • SQL − ALTER TABLE Statement
  • ALTER TABLE − ADD Column
  • ALTER TABLE − DROP COLUMN
  • ALTER TABLE − ADD INDEX
  • ALTER TABLE − DROP INDEX
  • ALTER TABLE − ADD PRIMARY KEY
  • ALTER TABLE − DROP PRIMARY KEY
  • ALTER TABLE − ADD CONSTRAINT
  • ALTER TABLE − DROP CONSTRAINT
  • ALTER TABLE − RENAME COLUMN
  • ALTER TABLE − MODIFY DATATYPE

'; var adpushup = adpushup || {}; adpushup.que = adpushup.que || []; adpushup.que.push(function() { adpushup.triggerAd(ad_id); });

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

IDNAMEAGEADDRESSSALARY
1Ramesh32Ahmedabad2000.00
2Khilan25Delhi1500.00
3Kaushik23Kota2000.00
4Chaitali25Mumbai6500.00
5Hardik27Bhopal8500.00
6Komal22Hyderabad4500.00
7Muffy24Indore10000.00

Syntax

Following is the basic syntax of an ALTER TABLE command −

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 −

ALTER TABLE CUSTOMERS ADD SEX char(1);

Output

Executing the query above will produce the following output −

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 −

SELECT * FROM CUSTOMERS;

Now, the CUSTOMERS table will be displayed as follows −

IDNAMEAGEADDRESSSALARYSEX
1Ramesh32Ahmedabad2000.00NULL
2Khilan25Delhi1500.00NULL
3Kaushik23Kota2000.00NULL
4Chaitali25Mumbai6500.00NULL
5Hardik27Bhopal8500.00NULL
6Komal22Hyderabad4500.00NULL
7Muffy24Indore10000.00NULL

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.

ALTER TABLE table_name DROP COLUMN column_name;

Example

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

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 −

SELECT * FROM CUSTOMERS;

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

IDNAMEAGEADDRESSSALARY
1Ramesh32Ahmedabad2000.00
2Khilan25Delhi1500.00
3Kaushik23Kota2000.00
4Chaitali25Mumbai6500.00
5Hardik27Bhopal8500.00
6Komal22Hyderabad4500.00
7Muffy24Indore10000.00

ALTER TABLE − ADD INDEX

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;

Output

The output will be displayed as −

Query OK, 0 rows affected (0.003 sec)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_namePRIMARY 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: 0 Duplicates: 0 Warnings: 1

Verification

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

DESC EMPLOYEES;

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

FieldTypeNullKeyDefaultExtra
IDint(11)NOPRINULL
NAMEvarchar(20)NONULL
AGEint(11)NONULL
ADDRESSchar(25)YESNULL
SALARYdecimal(18,2)YESNULL

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

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 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

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;

Example

Following query renames NAME column in table CUSTOMERS −

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;

Example

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

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

This will produce the following output −

Query OK, 0 rows affected (0.003 sec)Records: 0 Duplicates: 0 Warnings: 0
Kickstart Your Career

Get certified by completing the course

Get Started

SQL - ALTER TABLE (3)

Advertisem*nts

'; adpushup.triggerAd(ad_id); });

As an expert in SQL with demonstrable expertise and a depth of knowledge in relational database management systems (RDBMS) and SQL concepts, I'd like to dive into the ALTER TABLE statement, a crucial component of Data Definition Language (DDL) used for modifying the structure of database tables.

ALTER TABLE Statement: The SQL ALTER TABLE command is a powerful tool within DDL that allows you to make various modifications to a table's structure. These modifications include adding or deleting columns, creating or destroying indexes, changing the data type of existing columns, renaming columns or the table itself, and altering characteristics such as the storage engine used.

ALTER TABLE − ADD Column

If you need to add a new column to an existing table, you can use the ADD COLUMN option along with the ALTER TABLE statement. The syntax is as follows:

ALTER TABLE table_name ADD column_name datatype;

Example:

ALTER TABLE CUSTOMERS ADD SEX char(1);

This example adds a new column named SEX with a character data type to the existing CUSTOMERS table.

ALTER TABLE − DROP COLUMN

To drop an existing column from a table, you use the DROP COLUMN option along with the ALTER TABLE statement. The syntax is as follows:

ALTER TABLE table_name DROP COLUMN column_name;

Example:

ALTER TABLE CUSTOMERS DROP COLUMN SEX;

This example removes the column SEX from the CUSTOMERS table.

ALTER TABLE − ADD INDEX

Adding an index to an existing column can enhance database performance. The syntax is as follows:

ALTER TABLE table_name ADD INDEX index_name [index_type];

Example:

ALTER TABLE CUSTOMERS ADD INDEX name_index (NAME);

This example adds an index named name_index to the NAME column of the CUSTOMERS table.

ALTER TABLE − DROP INDEX

If you need to remove an existing index from a table, you can use the DROP INDEX statement along with the ALTER TABLE statement. The syntax is as follows:

ALTER TABLE table_name DROP INDEX index_name;

Example:

ALTER TABLE CUSTOMERS DROP INDEX name_index;

This example removes the index name_index from the CUSTOMERS table.

ALTER TABLE − ADD PRIMARY KEY

Adding a primary key to an existing table is essential for uniquely identifying each record. The syntax is as follows:

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

Example:

ALTER TABLE EMPLOYEES ADD CONSTRAINT MyPrimaryKey PRIMARY KEY(ID);

This example adds a primary key constraint named MyPrimaryKey to the ID column of the EMPLOYEES table.

ALTER TABLE − DROP PRIMARY KEY

To remove a primary key constraint from an existing table, you can use the following syntax:

ALTER TABLE table_name DROP PRIMARY KEY;

Example:

ALTER TABLE EMPLOYEES DROP PRIMARY KEY;

This example removes the primary key constraint from the ID column of the EMPLOYEES table.

ALTER TABLE − ADD CONSTRAINT

Adding a unique constraint to a column ensures that all values in the column are distinct. The syntax is as follows:

ALTER TABLE table_name ADD CONSTRAINT constraint_name UNIQUE(column1, column2...);

Example:

ALTER TABLE EMPLOYEES ADD CONSTRAINT CONST UNIQUE(NAME);

This example adds a unique constraint named CONST to the NAME column of the EMPLOYEES table.

ALTER TABLE − DROP CONSTRAINT

To remove a unique constraint from an existing table, you can use the following syntax:

ALTER TABLE table_name DROP CONSTRAINT constraint_name;

Example:

ALTER TABLE EMPLOYEES DROP CONSTRAINT CONST;

This example removes the unique constraint CONST from the NAME column of the EMPLOYEES table.

ALTER TABLE − RENAME COLUMN

Renaming a column in an existing table is achieved with the following syntax:

ALTER TABLE table_name RENAME COLUMN old_column_name TO new_column_name;

Example:

ALTER TABLE CUSTOMERS RENAME COLUMN name TO full_name;

This example renames the column name to full_name in the CUSTOMERS table.

ALTER TABLE − MODIFY DATATYPE

Changing the data type of a column can be necessary, and the syntax varies slightly between different database systems:

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;

Example:

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

This example changes the data type of the ID column in the CUSTOMERS table to DECIMAL(18, 4).

These examples demonstrate the versatility and power of the SQL ALTER TABLE statement, showcasing its ability to adapt and modify the structure of database tables to meet evolving requirements.

SQL - ALTER TABLE (2024)
Top Articles
Latest Posts
Article information

Author: Prof. Nancy Dach

Last Updated:

Views: 5563

Rating: 4.7 / 5 (57 voted)

Reviews: 88% of readers found this page helpful

Author information

Name: Prof. Nancy Dach

Birthday: 1993-08-23

Address: 569 Waelchi Ports, South Blainebury, LA 11589

Phone: +9958996486049

Job: Sales Manager

Hobby: Web surfing, Scuba diving, Mountaineering, Writing, Sailing, Dance, Blacksmithing

Introduction: My name is Prof. Nancy Dach, I am a lively, joyous, courageous, lovely, tender, charming, open person who loves writing and wants to share my knowledge and understanding with you.