Q. Which among the following is the correct syntax for defining "Constraint Check" in Mysql?
β
Correct Answer: (A)
gender char(1) check( gender IN ('M', 'F')),
Explanation: This question asks about the way to define a "Constraint Check" in MySQL. A constraint check is like a rule that makes sure the data you put into a table is correct.