How to use HAVING clause in SOQL?

HAVING:
Having_in_soql

         The HAVING clause used with a GROUP BY clause to filter the results returned by aggregate functions, such as SUM(). 
        A HAVING clause is similar to a WHERE clause. The difference is that you can include aggregate functions in a HAVING clause, but not in a WHERE clause.

Syntax:

SELECT fieldList or aggregate functions
FROM objectType
[GROUP BY fieldlist]
[HAVING havingConditionExpression]

Example:
We are  interested in LeadSource values that have generated more than 10 leads, you can filter the results by using a HAVING clause.

SELECT LeadSource, COUNT(Name)
FROM Lead
GROUP BY LeadSource
HAVING COUNT(Name) > 10

Before Using HAVING gothroug this points:
1. A HAVING clause can filter by aggregated values. It can also contain filter by any fields included in the GROUP BY clause.
2. Similar to a WHERE clause, a HAVING clause supports all the comparison operators, such as =, in conditional expressions, which can contain multiple conditions using the logical AND, OR, and NOT operators.
3. A HAVING clause can't contain any semi- or anti-joins.

COMMENTS

BLOGGER
Name

Apex Apex Default Methods Apex Methods Apex_Collections Apps Batch Apex Books CRM eBooks Data Import Wizard Data Management DataLoader Dataloader.io Difference Between Error in Salesforce FAQ's FAQ's-Apex FAQ's-Apps FAQ's-CRM FAQ's-Data loader FAQ's-SOQL & SOSL FAQ'S-Triggers FAQ's-User Profile & Security FAQ's-VF Force.com Explorer Force.com Ide Formulas & Functions Integration Interview Questions Only Latest_Updates Limits&Best Practices Online-Training Reports and Dashboards Salesforce Deployment Salesforce Realtime Examples On Development Salesforce Realtime Task On Admin Salesforce Realtime Tasks Salesforce Realtime Tasks- Apex Salesforce Training Salesforce1 Mobile Sites SOQL Spring'14 Release Triggers User Profile & Security VF Tags VisualForce Winter'14 Release Wizard for Accounts/Contacts Workbench Workflows and Approvals
false
ltr
item
Sfdc Gurukul- All in one place for salesforce and force.com step by step tutorial for beginners: How to use HAVING clause in SOQL?
How to use HAVING clause in SOQL?
how to use having in soql,having clause in soql,having in soql,soql having,soql having clause,soql having count,soql having salesforce,soql query having,soql query in apex,soql query in clause,soql query in salesforce example,soql query in visualforce page,soql query in syntax
http://2.bp.blogspot.com/-BqSVHRAL8gY/UlZ3Yg-dn9I/AAAAAAAABEk/6H59UzWwqNw/s1600/Having_in_soql.jpg
http://2.bp.blogspot.com/-BqSVHRAL8gY/UlZ3Yg-dn9I/AAAAAAAABEk/6H59UzWwqNw/s72-c/Having_in_soql.jpg
Sfdc Gurukul- All in one place for salesforce and force.com step by step tutorial for beginners
http://sfdcgurukul.blogspot.com/2013/10/how-to-use-having-clause-in-soql.html
http://sfdcgurukul.blogspot.com/
http://sfdcgurukul.blogspot.com/
http://sfdcgurukul.blogspot.com/2013/10/how-to-use-having-clause-in-soql.html
true
4199533888133360731
UTF-8
Not found any posts VIEW ALL Readmore Reply Cancel reply Delete By Home PAGES POSTS View All RECOMMENDED FOR YOU LABEL ARCHIVE SEARCH ALL POSTS Not found any post match with your request Back Home Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sun Mon Tue Wed Thu Fri Sat January February March April May June July August September October November December Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec just now 1 minute ago $$1$$ minutes ago 1 hour ago $$1$$ hours ago Yesterday $$1$$ days ago $$1$$ weeks ago more than 5 weeks ago Followers Follow THIS CONTENT IS PREMIUM Please share to unlock Copy All Code Select All Code All codes were copied to your clipboard Can not copy the codes / texts, please press [CTRL]+[C] (or CMD+C with Mac) to copy