what is difference between where clause and having clause?

Answers were Sorted based on User's Feedback



what is difference between where clause and having clause?..

Answer / shashikant

in 'where' clause every records filtered based on where
in 'having' is with aggregate records (group by functions )

Is This Answer Correct ?    44 Yes 5 No

what is difference between where clause and having clause?..

Answer / narender sharma

Where clause is used to restrict rows but having clause is
used to restrict groups

Is This Answer Correct ?    28 Yes 3 No

what is difference between where clause and having clause?..

Answer / anto padma sheela

1. Having clause is usually used with Group By clause
although it can be used without it too.

2. 'Having' is just an additional filter to 'Where' clause.

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

Is This Answer Correct ?    28 Yes 7 No

what is difference between where clause and having clause?..

Answer / arkchowdary

Where Clause------------------ It is used to Filter Rows
(i.e Restrict Rows and It appiles to the Individual Rows).

Having Clause----------------- It appies on Groups (i.e
Aggregate Functions).

Is This Answer Correct ?    23 Yes 3 No

what is difference between where clause and having clause?..

Answer / suga priya

query:WHERE DEPARTMENT > 333


query:HAVING AVG(SALARY) > 50000.

Is This Answer Correct ?    18 Yes 4 No

what is difference between where clause and having clause?..

Answer / yogesh babu

where is also similar to that of where clause used ina
query ... But this search filter is used while using a
groupby clause

Is This Answer Correct ?    10 Yes 3 No

what is difference between where clause and having clause?..

Answer / anto padma sheela

1. Having clause is usually used with Group By clause
although it can be used without it too.

2. 'Having' is just an additional filter to 'Where' clause.

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

Is This Answer Correct ?    14 Yes 8 No

what is difference between where clause and having clause?..

Answer / sonali

1.where clause is apply on individual row ofthe table and
having is apply on group of rows in the output of select
statement.
2.having clause is used with group by clause
3.having clause is used as a final filter on the aggregate
column values in the resultset of select statement.

Is This Answer Correct ?    2 Yes 0 No

what is difference between where clause and having clause?..

Answer / anant chavda

Þ The WHERE clause excludes rows that do not meet its
search conditions

Þ The GROUP BY clause collects rows that met the WHERE
clause search conditions and places those rows into a group
for each unique value in the GROUP BY clause. Omitting the
GROUP BY clause creates a single group for the whole table.

Þ The HAVING clause excludes groups that do not meet
its conditions. For example: When a query includes a GROUP
BY clause, the HAVING clause excludes groups from the
results. A SELECT statement containing a HAVING clause
without a GROUP BY clause will process the result as one
whole set. Aggregate functions specified in the select_list
calculate summary values for each surviving group.

Is This Answer Correct ?    5 Yes 4 No

what is difference between where clause and having clause?..

Answer / rajesh dutta

where conditions used only for comparing row values.

having conditions used to compares group values like
min,max,count etc.

Is This Answer Correct ?    3 Yes 3 No

Post New Answer

More Oracle General Interview Questions

what are actual and formal parameters?

0 Answers  


Do you know about aggregate functions? What is row num function? Can it be used all databases?

1 Answers   Bravura Solutions, Cap Gemini,


Hi All, Recently I attended a interview for a developer position in an educational university. They asked me the a question, I answered somehow but I was not not satisfied myself. Can anybody reply for it? The question is: A business user comes to you directly with an urgent request:: there is a problem with some students not being able to re-enrol. It appears that ?something has gone wrong with the end-dating of some previous courses they had enrolled in, and this is preventing them from completing their on-line re-enrolments?. Fortunately the user has done some analysis on the situation, and has developed some code to change the end dates. They tell you that they have tested this code in the ?dev? environment, and it works fine. They are asking you to please get this implemented in production as soon as possible. What steps would you take in response to their request ? Thanks

2 Answers  


select to_char('10','10') from dual This gives me an error oRA-1481 INVALID NUMBER FORMAT MODEL why? pls help

6 Answers  


What are advantages fo Stored Procedures?

1 Answers  






How to connect ms access to oracle servers?

0 Answers  


Can a View based on another View ?

3 Answers  


how table is defined in plsql table? how can i select column from plsql table? can i use select * from plsql table type?

1 Answers  


Does oracle charge for java?

0 Answers  


What is the purpose of save points in oracle database?

0 Answers  


What is merge statement used for?

0 Answers  


How i can handle exception in large code like 1000 line without distrubing the code or without exception handler sction?

0 Answers   Zensar,


Categories
  • Oracle General Interview Questions Oracle General (1789)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)