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...


Can Having clause be used without Group by clause?

Answers were Sorted based on User's Feedback



Can Having clause be used without Group by clause?..

Answer / phani

we can use, but select columns and having columns should
use with aggregare functions

ex:
select max(empid), min(marks)
from employee
having max(empid_id)>100

Is This Answer Correct ?    72 Yes 16 No

Can Having clause be used without Group by clause?..

Answer / debasish

we can use having clause without group bu clause .but it
will act as where clause

Is This Answer Correct ?    68 Yes 33 No

Can Having clause be used without Group by clause?..

Answer / sumathy

HAVING Clause
Specifies a search condition for a group or an aggregate.
HAVING is usually used with the GROUP BY clause. When GROUP
BY is not used, HAVING behaves like a WHERE clause.

Reference:
http://msdn.microsoft.com/en-us/library/aa259187
(SQL.80).aspx

Is This Answer Correct ?    30 Yes 3 No

Can Having clause be used without Group by clause?..

Answer / pradip jain

select max(empno) from dbo.Employee having count(EmpNo)=9

it has no meaning so it will show zero record

Is This Answer Correct ?    17 Yes 6 No

Can Having clause be used without Group by clause?..

Answer / shailesh yadav

Yes HAVING caluse can be use without GROUP BY. the SQL HAVING clause is often used with the GROUP BY clause. If the GROUP BY clause is omitted, the MySQL HAVING clause behaves like the WHERE clause. Notice that the MySQL HAVING clause applies the condition to each group of rows, while the WHERE clause applies the condition to each individual row.

Is This Answer Correct ?    6 Yes 2 No

Can Having clause be used without Group by clause?..

Answer / anilreddy

No,we can not use.If there is Having it must followed by Group By

Is This Answer Correct ?    6 Yes 52 No

Post New Answer

More SQL Server Interview Questions

When do you create cluster and noncluster index?

5 Answers   Satyam,


How to start and end transact-sql statements?

0 Answers  


What is the purpose of self join?

0 Answers  


What is a raid and what are different types of raid configurations?

0 Answers  


What is star, snowflake and star flake schema? : sql server analysis services, ssas

0 Answers  


When would you use the stored procedures or functions?

0 Answers  


Write the queries for commands like Create Table, Delete table, Drop Table etc.

0 Answers   HPCL, Hughes Systique Corporation,


What is a join in sql?

0 Answers  


What is the significance of null value and why should we avoid permitting null values?

0 Answers  


Can you please explain the difference between primary keys and foreign keys?

0 Answers  


What is the guest user account in sql server? What login is it mapped to it? : sql server security

0 Answers  


What are the new data types are introduced in sql 2000?

0 Answers  


Categories