edit column name mysql code example
Example 1: change column name mysql command line
ALTER TABLE `members` CHANGE COLUMN `full_names` `fullname` varchar(100) NOT NULL;
Example 2: how to edit table name in mysql
RENAME TABLE tb1 TO tb2;
Example 3: change column name mysql
ALTER TABLE tableName CHANGE `oldcolname` `newcolname` datatype(length);
(you can remove the backticks if it doesn't work)
Example 4: how to change column name in mysql
alter table product change price price_kg float;