In Sql Which Of The Following Statement Can Be Used To Rename A #345
In SQL, which of the following statement can be used to rename a column in an existing table using the ALTER command?
This multiple choice question (MCQ) is related to the book/course gs gs115 Structured Query Language. It can also be found in gs gs115 SQL Database - SQL Alter Table - Quiz No.2.
In SQL, which of the following statement can be used to rename a column in an existing table using the ALTER command?
ALTER TABLE table_name RENAME COLUMN TO new_name;
ALTER column_name RENAME TO new_column_name;
ALTER TABLE table_name RENAME new_column_name;
ALTER TABLE table_name RENAME COLUMN old_name TO new_name;