In SQL, most RDBMSs allow you to rename a table using the ALTER TABLE
statement, which is the statement used to modify the definition of an existing table.
Some RDBMs also include a RENAME
statement for renaming tables.
But if you use SQL Server, you’ll need to use the sp_rename
stored procedure.