Which among the following is the correct syntax for defining “Constraint Check” in Mysql?
Which among the following is the correct syntax for defining “Constraint Check” in Mysql? Correct Answer gender char(1) check( gender IN (‘M’, ‘F’)),
Check constraint constrains the allowable values for a particular column.