Changing the maximum length of a varchar column?

后端 未结 9 1735
[愿得一人]
[愿得一人] 2021-01-30 12:02

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

9条回答
  •  臣服心动
    2021-01-30 12:41

    You can use modify:

    ALTER TABLE `table name` 
    modify COLUMN `column name` varchar("length");
    

提交回复
热议问题