I\'m a beginner in MySQL, and I accidentally created a table with a column named
(price decimal(2,2));
It needs to be decimal(4,2)
decimal(4,2)
ALTER TABLE mytable MODIFY COLUMN mycolumn newtype
example:
ALTER TABLE YourTableNameHere MODIFY COLUMN YourColumnNameHere decimal(4,2)