Data type refers to the data characteristics of columns, stored procedure parameters, expressions and local variables. It determines the storage format of data and represents different information types.
#Char is a fixed-length type, such as char(5). For abc, if it is not five bytes, it will be filled with spaces.
varchar is a variable length type.
The above is the detailed introduction of mysql data types. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!