is it necessary to write group by and order by clause together
Answers were Sorted based on User's Feedback
Answer / suman
No Required.
Group by is grouping the records
but Order by mention the data should be desc or asc order.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / madhav
yes,
select deptno,sum(sal) from emp group by deptno;
(it displays ascending order)
when we want to display the descending order,we need order
by clause and group clause.
select deptno,sum(sal) from emp group by deptno order by
deptno desc
(it displays the descending order)
| Is This Answer Correct ? | 9 Yes | 10 No |
How does rowid help in running a query faster?
what are date and time intervals? : Sql dba
What are Nested Tables? How will u delete 5 rows from Nested Tables
Explain what is a database?
What is group function in sql?
What is left join in postgresql?
Explain the types of joins in sql?
How can i insert data inro a table with 3 columns using FORALL?
How many aggregate functions are available there in sql?
Is sql open source?
what are the differences between procedure-oriented languages and object-oriented languages? : Sql dba
What is faster join or subquery?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)