Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What is the difference between HAVING clause and the WHERE
clause?

Answers were Sorted based on User's Feedback



What is the difference between HAVING clause and the WHERE clause?..

Answer / srinivas

As per my knowledge WHERE is for conditional retrieving but
we cann't use Average Functions in WHERE clause.
HAVING clause can include AVG Functions.

Is This Answer Correct ?    20 Yes 5 No

What is the difference between HAVING clause and the WHERE clause?..

Answer / ishika

Having clause works on recordset while Where works on
individual record

Is This Answer Correct ?    15 Yes 4 No

What is the difference between HAVING clause and the WHERE clause?..

Answer / chandra kanth

WHERE is for conditional retrieving and having is using
group of records

Is This Answer Correct ?    13 Yes 4 No

What is the difference between HAVING clause and the WHERE clause?..

Answer / senthil kumar t

Where clause is used for conditional retreiving from the
table and also aggregate functions can be used in where
clause. Having clause will be used for the recordset this
also supports the aggregate functions

Is This Answer Correct ?    10 Yes 4 No

What is the difference between HAVING clause and the WHERE clause?..

Answer / pallavi tiwari

in where clause the data that fetched in memory is according
to condition but in having the completed data firstly
fetched in memory and then seperated according to condition.

Is This Answer Correct ?    4 Yes 0 No

What is the difference between HAVING clause and the WHERE clause?..

Answer / vivek kumar

where clause is used for conditional retriving but having
clause is used to test some condition on the group with the
help of aggregate function.

Is This Answer Correct ?    3 Yes 0 No

What is the difference between HAVING clause and the WHERE clause?..

Answer / mayursinh zala

'Where' clause applies to the individual rows whereas 'Having' clause is used to test some condition on the group(usually aggregate methods) rather than on individual rows.

Specifies a search condition for a group or an aggregate. HAVING can be used only with the SELECT statement. HAVING is typically used in a GROUP BY clause. When GROUP BY is not used, HAVING behaves like a WHERE clause.

So you can use having WITHOUT group by clause. This is a sample, although it might make no sense of business value:


select max(state) from States having count(State) > 60

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More SQL Server Interview Questions

Differences between functions and stored procedures?

8 Answers   247Customer, Accenture,


Characterize join and name diverse sorts of joins?

0 Answers  


How do you create a data source?

0 Answers  


What is the function of inner join?

0 Answers  


How to perform key word search in tables?

0 Answers  


How use inner join in sql server?

0 Answers  


Difference between connected and disconnected database in .net with sql server?

0 Answers   Infosys,


What is the purpose of using COLLATE in a query?

1 Answers  


How can I know what query is executing by by a particural user? (using sp id or any othe way.)

2 Answers  


Explain Active/Active and Active/Passive cluster configurations

2 Answers  


How cand Optimize SQL Server Stored Procedures

1 Answers  


Define cross join in sql server joins?

0 Answers  


Categories