Vidyalelo
MySQL · Q884

MySQL

Programming · MySQL · question 884

Q884

Which "text type" has the maximum number of bytes?

A.
Tiny text
B.
Text
C.
Medium text
D.
Long text
Answer

Answer: Option D

Solution

Answer: Option D
Solution:
This question asks about different data types in MySQL that are used to store text. Let's break down each option:
Option A: Tiny Text - This type can store a small amount of text data, like a short message.
Option B: Text - This type stores a larger amount of text data than Tiny Text, good for paragraphs or longer messages.
Option C: Medium Text - This type allows for storing even more text than the "Text" type. Think of it as a good choice for storing articles or longer blog posts.
Option D: Long Text - This type is designed for storing very large amounts of text, like entire novels or large documents.
So, out of all these options, Option D: Long Text can hold the most bytes of text data!