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 |
what is dbms? : Sql dba
what is self join and what is the requirement of self join? : Sql dba
What are the return values of functions SQLCODE and SQLERRM ?
What is function and procedure in pl sql?
What is #table in sql?
What is set transaction?
Is sql pronounced sequel or sql?
What are tuples in sql?
how to create a table index in mysql? : Sql dba
Can we use commit or rollback in trigger? If yes, then how. Please explain with a suitable example?
what are the limitations of mysql in comparison of oracle? Mysql vs. Oracle. : Sql dba
what is difference between delete and truncate commands? : Sql dba
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)