Database administrators and users may want to change the name of a table in a SQL database in order to give it a more relevant name in some cases. By using the RENAME TABLE and ALTER TABLE statements in Structured Query Language, any database user can quickly modify the name.
The RENAME TABLE and ALTER TABLE syntax can be used to change the table's name.
RENAME Cars To Car_Details ;
ALTER TABLE Cars RENAME TO Car_Details ;
Next