JDBC Driver for Zendesk

Build 22.0.8462

Aggregate Functions

COUNT

Returns the number of rows matching the query criteria.

SELECT COUNT(*) FROM Tickets WHERE Industry = 'Floppy Disks'

COUNT(DISTINCT)

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

SELECT COUNT(DISTINCT Id) AS DistinctValues FROM Tickets WHERE Industry = 'Floppy Disks'

AVG

Returns the average of the column values.

SELECT Subject, AVG(Size) FROM Tickets WHERE Industry = 'Floppy Disks'  GROUP BY Subject

MIN

Returns the minimum column value.

SELECT MIN(Size), Subject FROM Tickets WHERE Industry = 'Floppy Disks' GROUP BY Subject

MAX

Returns the maximum column value.

SELECT Subject, MAX(Size) FROM Tickets WHERE Industry = 'Floppy Disks' GROUP BY Subject

SUM

Returns the total sum of the column values.

SELECT SUM(Size) FROM Tickets WHERE Industry = 'Floppy Disks'

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