what is the correct way of selection statement
a. select/from/table_name/orderby/groupby/having
b. select/from/table_name/groupby/having/orderby
Answer Posted / kavitha nedigunta
b. select/from/table_name/groupby/having/orderby
EG: select deptno,max(sal)
from emp
group by deptno
having max(sal)> 5000
order by deptno
| Is This Answer Correct ? | 69 Yes | 1 No |
Post New Answer View All Answers
Should I use mbr or gpt?
What is data profiling in sql?
Explain the purpose of %type and %rowtype data types with the example?
What is equi join in sql?
Is record in oracle pl sql?
What does desc stand for?
What is the difference between distinct and unique in sql?
Explain select statements in sql?
Why truncate is used in sql?
What are triggers and its uses?
how to enter characters as hex numbers? : Sql dba
If the application is running very slow? At what points you need to go about the database in order to improve the performance?
What are sql*plus environment variables?
how to fetch common records from two tables? : Sql dba
Can we call procedure in select statement?