I\'m trying to update the length of a varchar column from 255 characters to 500 without losing the contents. I\'ve dropped and re-created tables before but I\'ve never been expo
You can use modify:
modify
ALTER TABLE `table name` modify COLUMN `column name` varchar("length");