EasyBasic SELECT
Rename a column
The query
SQL
ALTER TABLE employees
RENAME COLUMN phone_number TO contact_number;Note
“Renames the column without changing its data type or existing data.
ALTER TABLE employees
RENAME COLUMN phone_number TO contact_number;Note
“Renames the column without changing its data type or existing data.