Community

Varchar fields on MySQL 5.7

(Gabriela D’Ávila) VARCHAR and CHAR are used to store strings. VARCHAR stores varying length and CHAR always use the same exact size no matter the size of the string. For example, CHAR(4) will always store 4 bytes, whereas VARCHAR(4) will store up to 5 bytes. See documentation.

Read More - Register for Free Membership