Differentiate between char and varchar
Answers
Answered by
2
CHAR is fixed length and VARCHAR is variable length. ... Because varchar is a variable-length data type, the storage size of the varchar value is the actual length of the data entered, not the maximum size for this column. You can use char when the data entries in a column are expected to be the same size.
Similar questions