I would like to RENAME the column item_id
this column is int(11) UN zero-fill PK
I would like to rename to agricultural_machine_id
I've tried this command
ALTER TABLE agricultural_machine CHANGE COLUMN `item_id` `agricultural_machine_id` int(11);
I run this command but don't appear if successful or failed.
When I run this command appear item_id
SELECT * FROM agricultural_machine;