sql
SQL Rename Table With Example
.
SQL RENAME TABLE - How To Rename a Table in SQL?
In SQL Rename table Query Is used to Change
the Existing table name With a New Table name
RENAME TABLE Syntax
The Basic Syntax
For Rename table is As Follows.
ALTER TABLE table_name RENAME TO new_table_name;
RENAME TABLE Example
An example of Rename table is given below.
ALTER TABLE Student RENAME TO HOD;
.
Post a Comment
0 Comments