Answers for "query to change name of a column"

SQL
8

sql rename column

EXEC SP_RENAME 'TABLE_NAME.OLD_COLUMN_NAME','NEW_COLUMN_NAME'
Posted by: Guest on May-07-2020
1

how to change column name in mysql

alter table product change price price_kg float;
Posted by: Guest on April-30-2020

Code answers related to "query to change name of a column"

Code answers related to "SQL"

Browse Popular Code Answers by Language