- 1
What is the difference between VARCHAR2 AND CHAR datatypes?
1 Resposta
+ 1
char:
Used to store character string value of fixed value.
The maximum no. of characters the data type can hold is 255 characters.
It's more faster than varchar.
varchar:
Used to store variable size alphanumeric data.
The maximum this data type can hold is up to
In MySQL 5.0.3+: 65535 characters shared for the row.
It's slower than CHAR.