Home » MYSQL » MySQL Database Operations » Question
  1. Which of these is not optional?
    SELECT select_list FROM table_list WHERE row_constraint GROUP BY grouping_columns;
    1. table_list
    2. grouping_columns
    3. select_list
    4. row_constraint
    5. None of these
Correct Option: C

Given above was a basic syntax of the SELECT statement. Everything in the syntax is optional except the ‘select_list’ option. All the others are free to be omitted, and will work fine.



Your comments will be displayed only after manual approval.