SQL RENAME TABLE

The RENAME TABLE statement is used to change the name of an existing table.

 

Key Features of SQL RENAME TABLE

  • Allows renaming one or multiple tables in a database.
  • Ensures all table data, indexes, and constraints remain intact.
  • Works in MySQL, MariaDB, and some other databases.

 

SQL RENAME TABLE Syntax

RENAME TABLE old_table_name TO new_table_name;

 

Example: Renaming a Table

RENAME TABLE Employees TO Staff;
  • Renames the Employees table to Staff.

 

Example: Renaming Multiple Tables

RENAME TABLE Orders TO CustomerOrders, Products TO Inventory;
  • Changes Orders to CustomerOrders and Products to Inventory.

Alternative Commands for Other Databases

SQL Commands to Rename a Table

Database Command
MySQL / MariaDB RENAME TABLE old_table_name TO new_table_name;
PostgreSQL ALTER TABLE old_table_name RENAME TO new_table_name;
SQL Server EXEC sp_rename 'old_table_name', 'new_table_name';
Oracle ALTER TABLE old_table_name RENAME TO new_table_name;

 

Summary

  • RENAME TABLE is used to rename tables in MySQL/MariaDB.
  • Other databases use ALTER TABLE ... RENAME TO ....
  • All table data and constraints remain unchanged.