Answers for "mysql change table rename column"

SQL
0

cmd to rename a collumn name in sql

ALTER TABLE table_name RENAME COLUMN old_name TO new_name;
Posted by: Guest on June-21-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 "SQL"

Browse Popular Code Answers by Language