Q. Which among the following is the correct syntax for defining "ENUM" in Mysql?
β
Correct Answer: (A)
gender ENUM ('M', 'F'),
Explanation: This question is about ENUM in MySQL, which is a special data type used to define a column that can only hold a specific set of values. Imagine you have a column called "gender," and you only want it to contain either "Male" or "Female." This is where ENUM comes in handy. Here's the breakdown of the options: * Option A: gender ENUM ('M', 'F')