Example & Tutorial understanding programming in easy ways.

How we change the name of the table in the SQL?

We use ALTER command to do this:


Syntax:

ALTER TABLE table_name

RENAME to new_table_name;

Read More →