MSSQLAggregate FunctionsCHECKSUM_AGG
VARP

CHECKSUM_AGGAggregate Functions

GROUPING

Returns the checksum of a group.

Syntax

CHECKSUM_AGG(expr)

Example

Enter values below to update the example in real time.

table_checksum
employees
SELECT CHECKSUM_AGG(CHECKSUM(*)) AS table_checksum
FROM employees;