Can Having clause be used without Group by clause?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
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 |
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 |
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 |
What is the command dbcc checkdb used for?
how can you move the master database
What does the on update no action do?
What does it mean to invest in the index?
how we can use a database with php.
How can you check the version of sql server?
How to Install SQL SERVER 2005 remotely?
If you are given access to a SQL Server, how do you find if the SQL Instance is a named instance or a default instance?
Find nth lowest salary or get nth lowest salary?
Can group functions be used in the order by clause in ms sql server?
Can the query output be sorted by multiple columns in ms sql server?
Can group by be used without aggregate functions?