Answers for "sql server change name of the table"

SQL
0

how to change the column name in sql

ALTER TABLE table_name
CHANGE COLUMN old_name TO new_name;
Posted by: Guest on March-17-2021
2

alter table name sql

-- Microsoft SQL style
EXEC sp_rename 'TableOldName', 'TableNewName';
Posted by: Guest on July-11-2020

Code answers related to "sql server change name of the table"

Code answers related to "SQL"

Browse Popular Code Answers by Language