What is the difference between Where and Having Clause

Answers were Sorted based on User's Feedback



What is the difference between Where and Having Clause..

Answer / minor kunju

Hi,All

I found this Discussion From various Articles

I want to share With all



Here is The Difference

Though the HAVING clause specifies a condition that is
similar to the purpose of a WHERE clause, the two clauses
are not interchangeable. Listed below are some differences
to help distinguish between the two:

1. The WHERE clause specifies the criteria which individual
records must meet to be selcted by a query. It can be used
without the GROUP BY clause. The HAVING clause cannot be
used without the GROUP BY clause.

2. The WHERE clause selects rows before grouping. The
HAVING clause selects rows after grouping.

3. The WHERE clause cannot contain aggregate functions. The
HAVING clause can contain aggregate functions.




The HAVING clause allows you to filter the results of
aggregate functions,
such as COUNT() or AVG() or SUM(), or MAX() or MIN(), just
to name a few.

HAVING provides you a means to filter these results in the
same query,

as opposed to saving the results of a WHERE clause SQL
statement to a temporary table

and running another query on the temporary table results to
extract the same results.


Follow The Below Example This Will Clear Up

Go





Create table Test_Where_Having

(id int identity,[Name] varchar(20),[Age] int,Amount int)

Go

insert into Test_Where_Having

select 'Abc',20,100

union all

select 'Def',30,100

union all

select 'Ghi',52,500

union all

select 'Jkl',30,80

union all

select 'Mno',40,600

union all

select 'Pqr',60,500

union all

select 'Pqr',60,500

union all

select 'Abc',20,500
Go

--They both are use to exclude rows from the resultset,

--but "where" is to filter the original set

--and "having" is in case you are grouping.

select [Name],[Age] from Test_Where_Having

where Age>30

--Output

Name Age

-------------------- -----------

Ghi 52

Mno 40

Pqr 60

Pqr 60





select [Name],[Age],Sum(Amount) As Total from
Test_Where_Having

group by [Name],[Age]

having Sum(Amount)>400

--Output

Name Age Total

-------------------- ----------- -----------

Abc 20 600

Mno 40 600

Ghi 52 500

Pqr 60 1000





--For Below Case These Queries Are Same As per Performance
(Cost Of Query) And result basis

select [Name],[Age],Sum(Amount) As Total from
Test_Where_Having

where Age>30

group by [Name],[Age]

select [Name],[Age],Sum(Amount) As Total from
Test_Where_Having

group by [Name],[Age]

having Age>30






--For Below Case These Queries Are Same As per Performance
(Cost Of Query) And result basis

select [Name],[Age] from Test_Where_Having

where Age>30

group by [Name],[Age]

select [Name],[Age] from Test_Where_Having

group by [Name],[Age]

having Age>30












--WHERE is used to filter rows. HAVING is usually used to
filter rows after performing an aggregation.

--Below Query is incorrect While using aggregate with where
clause

select [Name],[Age],Sum(Amount) As Total from
Test_Where_Having

where Sum(Amount)>30

group by [Name],[Age]

--U can use the above with Having

select [Name],[Age],Sum(Amount) As Total from
Test_Where_Having

group by [Name],[Age]

having Sum(Amount)>30

--Output

Name Age Total

-------------------- ----------- -----------

Abc 20 600

Def 30 100

Jkl 30 80

Mno 40 600

Ghi 52 500

Pqr 60 1000











--You can't use HAVING unless you also use GROUP BY.

--Ie below Query is incorrect

select [Name],[Age],Sum(Amount) As Total from
Test_Where_Having

having Sum(Amount)>30






--One limitation when you use the HAVING clause as compare
to WHERE clause.

-- Having clause only supports the Grouped Columns &
Aggregation filter..

--Where there is a column level filter then always use the
Where clause,

--Use Having clause only for Aggregation filter.

--For Example Below U cant use Amount column in Having
Clause because it is not in grouped columns

select [Name],[Age] from Test_Where_Having

group by [Name],[Age]

having Amount>30


--For The Above Case U can Use Where Clause

select [Name],[Age] from Test_Where_Having

where Amount>30

group by [Name],[Age]

Is This Answer Correct ?    49 Yes 3 No

What is the difference between Where and Having Clause..

Answer / s

WHERE filters the rows based on the predicate.
HAVING filters a group of rows based on the GROUP BY colums.

Is This Answer Correct ?    48 Yes 10 No

What is the difference between Where and Having Clause..

Answer / kums

Aso we can say that, WHERE filters the rows based on the
predicate. HAVING fill workd along with aggragate function.

Is This Answer Correct ?    21 Yes 10 No

What is the difference between Where and Having Clause..

Answer / md amanullah

Where Clause:
1)WHERE clause can be used without GROUP BY clause.
2)WHERE clause select rows before grouping.
3)WHERE clause can not contain aggregate functions.
4)WHERE clause can operate individual row.
5)It is more fast.

Having Clause:
1)HAVING clause can not be used without GROUP BY clause.
2)HAVING clause select rows after grouping.
3)HAVING clause can contain aggregate functions.
4)HAVING clause can operate group of row.
5)It is much slow.

Is This Answer Correct ?    7 Yes 4 No

What is the difference between Where and Having Clause..

Answer / njadav

Where Clause:
1)WHERE clause can be used without GROUP BY clause.
2)WHERE clause select rows before grouping.
3)WHERE clause can not contain aggregate functions.
4)WHERE clause can operate individual row.
5)It is more fast.

Having Clause:
1)HAVING clause can not be used without GROUP BY clause.
2)HAVING clause select rows after grouping.
3)HAVING clause can contain aggregate functions.
4)HAVING clause can operate group of row.
5)It is much slow.

Is This Answer Correct ?    2 Yes 1 No

What is the difference between Where and Having Clause..

Answer / badal

both define condition
where for individiual records

group by for group of records

Is This Answer Correct ?    7 Yes 7 No

What is the difference between Where and Having Clause..

Answer / narendra

Both are used to filter the rows but
where is used to filter the rows on single row functions and
having is used to filter the rows on group functions or aggregate functions.

one more thing i would like to mention is
having can be used without group by

Is This Answer Correct ?    4 Yes 7 No

Post New Answer

More DB2 Interview Questions

how do we solve soc 7 and soc4 ?

3 Answers   Tech Mahindra,


Select empno, sal from emptbl where empno < 101.By this query can we fetch first 100 recs? where empno is primary key.It won't throw -811 error? if it wont,then what is use of cursor technique while fetching first 100 recs. Please need more clarification.

2 Answers  


What do you mean by between and in? Is between inclusive of specified range values?

0 Answers  


What is blu acceleration in db2?

0 Answers  


Explain about open switch business continuity software?

0 Answers  






What is a LIKE table and how is it created?

2 Answers  


What are the contents of dclgen?

0 Answers  


What is cursor stability?

1 Answers  


What is a PLAN table? How will you use it? Give the various fields of PLAN table?

1 Answers   Accenture,


B37 abend during spufi?

0 Answers   IBM,


In cobol+DB2program if the code of cobol program has changed than i have to do precompilation once again?

6 Answers   TCS,


What is Reorg Recovery? when will you run it?

2 Answers  


Categories