- 1

What is the difference between VARCHAR2 AND CHAR datatypes?

10th Nov 2016, 4:19 AM
Joemyr Ayen Ramos
Joemyr Ayen Ramos - avatar
1 ответ
+ 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.
10th Nov 2016, 5:24 AM
Aditya kumar pandey
Aditya kumar pandey - avatar