Google News
logo
MySQL - Quiz(MCQ)
SELECT select_list FROM table_list WHERE row_constraint GROUP BY grouping_columns; Which of these is not optional?
A)
table_list
B)
select_list
C)
row_constraint
D)
grouping_columns

Correct Answer :   select_list


Explanation : 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.

Advertisement