Answers for "alter name column mysql"

SQL
1

change column name mysql

ALTER TABLE tableName CHANGE `oldcolname` `newcolname` datatype(length);
(you can remove the backticks if it doesn't work)
Posted by: Guest on June-06-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