what is the order of execution of where,having,group by in
select stement

Answers were Sorted based on User's Feedback



what is the order of execution of where,having,group by in select stement..

Answer / sri

1. WHERE
2. GROUP BY
3. HAVING

Is This Answer Correct ?    39 Yes 4 No

what is the order of execution of where,having,group by in select stement..

Answer / bobby

The order of syntax for SELECT statement is

Select Top| Distinct
From Join
On
Where
Group By
Having
Oder By

But the order of execution of SELECT statement is
1.From
2.On
3.Join
4.Where
5.Group By
6.Having
7.Distinct
8.Select
9.Order By
10.Top

Is This Answer Correct ?    30 Yes 2 No

what is the order of execution of where,having,group by in select stement..

Answer / shivaraj

Execution-1- WHERE
Execution-2- GROUP BY
Execution-3- HAVING

Is This Answer Correct ?    26 Yes 2 No

what is the order of execution of where,having,group by in select stement..

Answer / visala

where
group by
having

Is This Answer Correct ?    15 Yes 1 No

what is the order of execution of where,having,group by in select stement..

Answer / lakshmi

from clause
where
group by
having
distinct
order by
select

Is This Answer Correct ?    2 Yes 5 No

what is the order of execution of where,having,group by in select stement..

Answer / bhagyashri jain

First of all,
when Group by and having clauses are there , the Where
clause can't present there, so order of group by, having is
respectively
Group by
Having

Is This Answer Correct ?    6 Yes 20 No

Post New Answer

More SQL Server Interview Questions

What are the steps to insert a table?

0 Answers  


What is exclusive locks?

0 Answers  


What is the difference between the following two sql statements select count(*) from <tablename> select count(col_name) from <tablename>

5 Answers   247Customer,


What command do we use to rename a db, a table and a column?

0 Answers  


What is the disadvantages of index?

3 Answers   TCS,






What is etl - extraction, transformation, and loading?

0 Answers  


Explain comment on transactions?

0 Answers  


Difference between Triggers and Stored Procedure

23 Answers   Claimat, HCL, Protech, Silgate,


Explain about system stored procedure?

0 Answers  


How to find the date and time of last updated table?

3 Answers  


How to find the date and time of last updated table?

6 Answers   Teledata,


What is a natural primary key?

0 Answers  


Categories