Google News
logo
MySQL - Quiz(MCQ)
Character data can be stored as _______
A)
Fixed length string
B)
Variable length string
C)
Either Fixed or Variable length string
D)
None of the above

Correct Answer :   Either Fixed or Variable length string


Explanation :

To store character data we can use two definitions :

Char(20) /*fixed length */
Varchar(20) /* variable length */

Advertisement