MySQL ALTER Table

MySQL ALTER Table

MySQL ALTER statement is used when you want to change the name of your table or any table field. It is also used to add or delete an existing column in a table.

The ALTER statement is always used with “ADD”, “DROP” and “MODIFY” commands according to the situation.

1) ADD a column in the table

Syntax:

  1. ALTER TABLE table_name
  2. ADD new_column_name column_definition
  3. FIRST | AFTER column_name ];

Parameters

table_name: It specifies the name of the table that you want to modify.

new_column_name: It specifies the name of the new column that you want to add to the table.

column_definition: It specifies the data type and definition of the column (NULL or NOT NULL, etc).

FIRST | AFTER column_name: It is optional. It tells MySQL where in the table to create the column. If this parameter is not specified, the new column will be added to the end of the table.

Example:

we add a new column “cus_age” in the existing table “cus_tbl”.

Use the following query to do this:

  1. ALTER TABLE cus_tbl
  2. ADD cus_age varchar(40) NOT NULL;

Output:

amysql

See the recently added column:

  1. SELECTFROM cus_tbl;

amysql1

2) Add multiple columns in the table

Syntax:

  1.  ALTER TABLE table_name
  2.  ADD new_column_name column_definition
  3.  [ FIRST | AFTER column_name ],
  4. ADD new_column_name column_definition
  5. FIRST | AFTER column_name ],
  6.   …
  7. ;

Example:

In the example, we add two new columns “cus_address”, and cus_salary in the existing table “cus_tbl”. cus_address is added after cus_surname column and cus_salary is added after cus_age column.

Use the following query to do this:

  1. ALTER TABLE cus_tbl
  2. ADD cus_address varchar(100) NOT NULL
  3. AFTER cus_surname,
  4. ADD cus_salary int(100) NOT NULL
  5. AFTER cus_age ;

amysql2

See the recently added columns:

  1. SELECTFROM cus_tbl;

amysql3

3) MODIFY column in the table

The MODIFY command is used to change the column definition of the table.

Syntax:

  1. ALTER TABLE table_name
  2. MODIFY column_name column_definition
  3. FIRST | AFTER column_name ];

Example:

In the example, we modify the column cus_surname to be a data type of varchar(50) and force the column to allow NULL values.

Use the following query to do this:

  1. ALTER TABLE cus_tbl
  2. MODIFY cus_surname varchar(50) NULL;

amysql5

4) DROP column in table

Syntax:

  1. ALTER TABLE table_name
  2. DROP COLUMN column_name;

Let’s take an example to drop the column name “cus_address” from the table “cus_tbl”.

Use the following query to do this:

  1. ALTER TABLE cus_tbl
  2. DROP COLUMN cus_address;

Output:

amysql4

5) RENAME column in table

Syntax:

  1. ALTER TABLE table_name
  2. CHANGE COLUMN old_name new_name
  3. column_definition
  4. FIRST | AFTER column_name ]

Example:

In this example, we will change the column name “cus_surname” to “cus_title”.

Use the following query to do this:

  1. ALTER TABLE  cus_tbl
  2. CHANGE COLUMN cus_surname cus_title
  3. varchar(20) NOT NULL;

Output:

amysql6

6) RENAME table

Syntax:

  1. ALTER TABLE table_name
  2. RENAME TO new_table_name;

Example:

In the example, the table name cus_tbl is renamed as cus_table.

  1. ALTER TABLE cus_tbl
  2. RENAME TO cus_table;

Output:

amysql7