The VAR function finds the variance by using a portion, called a sample, of the total number of values in a field.
This is a time saver when dealing with extremely large tables and can be shown to be statistically valid. In comparison, the VARP function uses all of the values to calculate the variance. There must be at least two values in the field or the variance will not be calculated and a NULL is returned.
SELECT VAR(Age) AS [VarAge]
FROM MediCarePatients
VarAge
384.1061
(1 row(s) affected)
This code finds the variance of the age of the MediCare patients in a hospital (by using a sample) and stores that information in 'VarAge'.