Example & Tutorial understanding programming in easy ways.

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

We use ALTER command to do this:


Syntax:

ALTER TABLE table_name

RENAME COLUMN old_name to new_name;

Read More →