what is the difference between CHAR and VARCHAR data type s?
Answers
Answered by
3
Answer:
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