what is the correct way of selection statement
a. select/from/table_name/orderby/groupby/having
b. select/from/table_name/groupby/having/orderby

Answers were Sorted based on User's Feedback



what is the correct way of selection statement a. select/from/table_name/orderby/groupby/having b...

Answer / 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

what is the correct way of selection statement a. select/from/table_name/orderby/groupby/having b...

Answer / iamanocp

Answer is b.
b. select/from/table_name/groupby/having/orderby

Is This Answer Correct ?    18 Yes 0 No

what is the correct way of selection statement a. select/from/table_name/orderby/groupby/having b...

Answer / anil kumar jaiswal

the sequence is like this :
select
from
table_name
where
group by
having
order by.

where ever writing a sql query the sequence should be in this order.
so the answer B is correct.

Is This Answer Correct ?    0 Yes 0 No

what is the correct way of selection statement a. select/from/table_name/orderby/groupby/having b...

Answer / abhishekjaiswal

It's Ans(b).

Is This Answer Correct ?    1 Yes 2 No

what is the correct way of selection statement a. select/from/table_name/orderby/groupby/having b...

Answer / subbu

both are wrong

from/table_name/group by/having/select/oderby

Is This Answer Correct ?    3 Yes 13 No

Post New Answer

More SQL PLSQL Interview Questions

What is faster join or subquery?

0 Answers  


how to create a table index in mysql? : Sql dba

0 Answers  


Can we create clustered index without primary key?

0 Answers  


Can we create table in function?

0 Answers  


What is the difference between sql and mysql?

0 Answers  






Mention what is the plv (pl/vision) package offers?

0 Answers  


How to get the procedure's, function's name from a package if it is wrapped(both spec & body).

2 Answers  


What are primary key and foreign key and how they work?

0 Answers  


What is nested table in pl sql?

0 Answers  


What is a 'instead of trigger'?

3 Answers   Eenadu, TCS,


What is latest version of sql?

0 Answers  


what are the types of subquery? : Sql dba

0 Answers  


Categories