InterviewSolution
Saved Bookmarks
| 1. |
Which among the following is the correct syntax for defining “ENUM” in Mysql?(a) gender ENUM (‘M’, ‘F’),(b) gender ENUM,(c) gender ENUM ( ),(d) none of the mentionedI have been asked this question in quiz.This key question is from Table Creation topic in portion Using SQL to Manage Data of MySQL |
|
Answer» Correct OPTION is (a) GENDER ENUM (‘M’, ‘F’), |
|