Answers for "what sql command would you use to change a column's values"

SQL
-1

alter table query sql server change column

sp_rename 'table_name.old_column_name', 'new_column_name', 'COLUMN';
Posted by: Guest on February-17-2021

Code answers related to "what sql command would you use to change a column's values"

Code answers related to "SQL"

Browse Popular Code Answers by Language