JDBC Driver for Microsoft Dynamics 365

Build 22.0.8462

Aggregate Functions

COUNT

Returns the number of rows matching the query criteria.

SELECT COUNT(*) FROM GoalHeadings WHERE Name = 'MyAccount'

COUNT(DISTINCT)

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

SELECT COUNT(DISTINCT GoalHeadingId) AS DistinctValues FROM GoalHeadings WHERE Name <> 'MyAccount'

AVG

Returns the average of the column values.

SELECT GoalHeadingId, AVG(AnnualRevenue) FROM GoalHeadings WHERE Name <> 'MyAccount'  GROUP BY GoalHeadingId

MIN

Returns the minimum column value.

SELECT MIN(AnnualRevenue), GoalHeadingId FROM GoalHeadings WHERE Name <> 'MyAccount' GROUP BY GoalHeadingId

MAX

Returns the maximum column value.

SELECT GoalHeadingId, MAX(AnnualRevenue) FROM GoalHeadings WHERE Name <> 'MyAccount' GROUP BY GoalHeadingId

SUM

Returns the total sum of the column values.

SELECT SUM(AnnualRevenue) FROM GoalHeadings WHERE Name = 'MyAccount'

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