Google News
logo
MySQL - Quiz(MCQ)
Which of these types store the longest length of strings?
A)
CHAR
B)
TEXT
C)
VARCHAR
D)
TINYTEXT

Correct Answer :   TEXT


Explanation : In MySQL, the different string datatypes are used to store different lenghts of the string. Here, the length would refer to the number of characters in the string. TEXT stores longer strings.

Advertisement