InterviewSolution
Saved Bookmarks
| 1. |
Which of these types store the longest length of strings?(a) CHAR(b) VARCHAR(c) TINYTEXT(d) TEXT |
|
Answer» Correct answer is (d) TEXT The 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. |
|