Which Of The Following Is A Correct Syntax Of Group By Clause #238
Which of the following is a correct syntax of GROUP BY clause?
This multiple choice question (MCQ) is related to the book/course
gs gs115 Structured Query Language.
It can also be found in
gs gs115 SQL Questions on Data Retrieval Techniques - SQL Group By - Quiz No.1.
Which of the following is a correct syntax of GROUP BY clause?
Select c1, count(c2) From table_name Group by c2; Select c1, count(c2) From table_name Group by c1 Where condition; Select c1, count(c2) From table_name Group by c2, c1; Select c1, count(c2) From table_name Group by c2 Order by c1;