Computer Science, asked by eka55, 1 year ago

what are the difference between CHAR and VARCHAR

Answers

Answered by sidney134
1

Answer:

CHAR is fixed length and VARCHAR is variable length. CHAR always uses the same amount of storage space per entry, while VARCHAR only uses the amount necessary to store the actual text. The char is a fixed-length character data type, the varchar is a variable-length character data type.

Similar questions