SELECT flavor, SUM (ice_cream_sales) FROM sales_detail
GROUP BY flavor ORDER BY 2 DESC
If the "sales_detail" table contains ten records with
different values in the flavor column (two "vanilla,"
three "chocolate," four "strawberry," and one NULL), how
many rows are returned by the sample code above?
1. 0 rows
2. 1 row
3. 3 rows
4. 4 rows
5. 10 rows
Answer Posted / kapil
It would return 4 rows
because there is also a sum of ice_cream_sales for null also
so it would return 4 rows including null with order
dependimg on the value of sum function returned .
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What is the starting oracle error number? What is meant by forward declaration in functions?
Why is sql better than hql?
What is difference between pl and sql?
What is difference between stored procedure and trigger?
How do you explain an index?
How do you write a complex sql query?
Explain the components of sql?
How to connect a sql*plus session to an oracle server?
what are date and time intervals? : Sql dba
what are the performance and scalability characteristics of mysql? : Sql dba
What is exit statement?
What is the use of & in pl sql?
What are the advantages of pl sql over sql?
How many subqueries can be nested in a statement?
What is a behavioral trigger?