SQL RENAME TABLE

SQL RENAME TABLE syntax is used to change the name of a table. Sometimes, we choose non-meaningful name for the table. So it is required to be changed.

Let's see the syntax to rename a table from the database.

Optionally, you can write following command to rename the table.

Let us take an example of a table named "STUDENTS", now due to some reason we want to change it into table name "ARTISTS".

Table1: students

Name Age City
Amrita gill 25 Amritsar
Amrender sirohi 22 Ghaziabad
Divya khosla 20 Delhi

You should use any one of the following syntax to RENAME the table name:

Or

Next TopicSQL TRUNCATE TABLE




Contact US

Email:[email protected]

SQL RENAME TABLE
10/30