CBSE BOARD X, asked by gayathrigayu1831, 8 months ago

what is data type like char and varchar??​

Answers

Answered by Anonymous
10

Explanation:

Char' is a fixed-length data type which is used to store character string value of fixed length, whereas 'Varchar' is a variable-length data type which is used to store variable length alphanumeric data.

Hope it helps

Mark as brainliest

Attachments:
Answered by Anonymous
1

Explanation:

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.

Similar questions