Which clause of Select statement helps to display specific data?
Answers
Answered by
1
Answer:
The SELECT statement has many optional clauses: FROM specifies which table to get the data. WHERE specifies which rows to retrieve. GROUP BY groups rows sharing a property so that an aggregate function can be applied to each group.
Similar questions