What is the difference between VARCHAR2 AND CHAR datatypes? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

What is the difference between VARCHAR2 AND CHAR datatypes?

10th Nov 2016, 4:19 AM
Joemyr Ayen Ramos
Joemyr Ayen Ramos - avatar
1 Answer
+ 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