JDBC Driver for Bullhorn CRM

Build 22.0.8462

Aggregate Functions

COUNT

Returns the number of rows matching the query criteria.

SELECT COUNT(*) FROM Candidate WHERE CandidateName = 'Bob'

COUNT(DISTINCT)

Returns the number of distinct, non-null field values matching the query criteria.

SELECT COUNT(DISTINCT Id) AS DistinctValues FROM Candidate WHERE CandidateName = 'Bob'

AVG

Returns the average of the column values.

SELECT CandidateName, AVG(AnnualRevenue) FROM Candidate WHERE CandidateName = 'Bob'  GROUP BY CandidateName

MIN

Returns the minimum column value.

SELECT MIN(AnnualRevenue), CandidateName FROM Candidate WHERE CandidateName = 'Bob' GROUP BY CandidateName

MAX

Returns the maximum column value.

SELECT CandidateName, MAX(AnnualRevenue) FROM Candidate WHERE CandidateName = 'Bob' GROUP BY CandidateName

SUM

Returns the total sum of the column values.

SELECT SUM(AnnualRevenue) FROM Candidate WHERE CandidateName = 'Bob'

Copyright (c) 2023 CData Software, Inc. - All rights reserved.
Build 22.0.8462