Home » MYSQL » Create Tables » Question
  1. Which among the following is the correct syntax for defining “ENUM” in Mysql?
    1. gender ENUM,
    2. gender ENUM ( ),
    3. gender ENUM (‘M’, ‘F’),
    4. All of above
    5. None of these
Correct Option: C

gender ENUM (‘M’, ‘F’),



Your comments will be displayed only after manual approval.