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 / roopa
3rows'
| Is This Answer Correct ? | 2 Yes | 5 No |
Post New Answer View All Answers
What is the use of <> sql?
What is trigger in sql?
Can pl sql procedure have a return statement?
What is posting?
What is the largest value that can be stored in a byte data field?
Should I use mbr or gpt?
What is composite primary key in sql?
How do I create a sql database?
What is oracle and pl sql?
How do I filter in sql profiler?
What is the difference between pl and sql?
How does a covering index work?
What is range partitioning?
what are the different tables present in mysql, which type of table is generated when we are creating a table in the following syntax: create table employee (eno int(2),ename varchar(10)) ? : Sql dba
tell me about various levels of constraint. : Sql dba