Computer Science, asked by nishidesai, 6 months ago

difference between char and Varchar​

Answers

Answered by akankshakamble6
15

Answer:

VARCHAR is variable length, while CHAR is fixed length.

CHAR is a fixed length string data type, so any remaining space in the field is padded with blanks.

CHAR takes up 1 byte per character. ... VARCHAR is a variable length string data type, so it holds only the characters you assign to it.

Answered by rehanakhatun051988
4

Explanation:

the short answer :the VARCHAR is variable length, while CHAR is fixed length.

Similar questions