Examveda

The maximum collations a character set can have is . . . . . . . .

A. 0

B. 1

C. 2

D. more than 1

Answer: Option D

Solution (By Examveda Team)

This question is about character sets and collations in MySQL. Let's break it down:
* Character set: A character set defines a set of characters (like letters, numbers, and symbols) that a database can store.
* Collation: A collation defines how those characters are sorted and compared. Think of it as a specific language setting for your data.
For example, the character set "utf8mb4" can handle a wide range of characters from different languages. However, it can have several collations like "utf8mb4_general_ci" (case-insensitive) or "utf8mb4_unicode_ci" (case-insensitive and uses Unicode rules).
So, the answer is Option D: more than 1. A character set can have multiple collations to handle different sorting and comparison needs.

This Question Belongs to MySQL >> MySQL Miscellaneous

Join The Discussion

Related Questions on MySQL Miscellaneous