Changing the maximum length of a varchar column?

后端 未结 9 1587
[愿得一人]
[愿得一人] 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:49

    ALTER TABLE TABLE_NAME MODIFY COLUMN_NAME VARCHAR(40);
    

    Late to the question - but I am using Oracle SQL Developer and @anonymous's answer was the closest but kept receiving syntax errors until I edited the query to this.

    Hope this helps someone

提交回复
热议问题