Search code examples
mysqldatabase-designvarchar

Will extending the size of a varchar field in MySQL affect the data thats inside it?


I am going to be extending the column from VARCHAR(350) to VARCHAR(800) - will affect any of the strings that are inside the column already?


Solution

  • Expanding, no.

    Shrinking, yes.