Unfortunately, you need to re-list all the existing enum values when adding a new value to the the enum.
ALTER TABLE mytable MODIFY COLUMN mycolumn ENUM('a','b','c','d','e');
You don’t really want to use CONCAT()
in this situation.
Unfortunately, you need to re-list all the existing enum values when adding a new value to the the enum.
ALTER TABLE mytable MODIFY COLUMN mycolumn ENUM('a','b','c','d','e');
You don’t really want to use CONCAT()
in this situation.