what is the order of execution of where,having,group by in
select stement
Answers were Sorted based on User's Feedback
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 |
Answer / shivaraj
Execution-1- WHERE
Execution-2- GROUP BY
Execution-3- HAVING
| Is This Answer Correct ? | 26 Yes | 2 No |
Answer / lakshmi
from clause
where
group by
having
distinct
order by
select
| Is This Answer Correct ? | 2 Yes | 5 No |
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 |
How to get the number of affected rows?
How to find out name of all employees who has salary less than 200 Rs.?
How to rename an existing column with sql server management studio?
What is the sql profiler?
You have a stored procedure, which execute a lengthy batch job. This stored procedure is called from a trigger you do not want to slow the data entry process you do not want trigger to wait for this batch job to finish before it completes itself what you can do to speed up the process?
Delete duplicate rows from a table without primary key by using a single query Table Employee empname salary A 200 B 300 A 200 C 400 D 500 D 500 Output should be A 200 B 300 C 400 D 500
What are the elements of dbms?
What is mean by clustered index and non clustered index, give syntax of creation? : sql server database administration
What is proper subset of candidate key?
What are the types of subscriptions in SQL Server replication?
Where is localdb stored?
You have to store user responses of ‘yes’ and ‘no’ what kind of data type is best suited for this task?
Oracle (3253)
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)