SQL - VAR() Function



The SQL VAR() function calculates the statistical standard variance of the fields (numerical values) in a particular column. If the specified row(s) doesn’t exist, then this function returns NULL.

The statistical standard variance is a measure of the amount of variation or dispersion in a set of data from its mean value. Mathematically, the mean is an average value of given set of number and a variance is defined as the average of squared differences from mean value. Symbolically it is represented by σ2.

Syntax

Following is the syntax of SQL VAR() function −

VAR(column_name)

Parameters

  • column_name − It is the name of the column for which we want to calculate the standard deviation variance.

Example

Assume we have created a table with name CUSTOMERS as shown below −

create table CUSTOMERS(ID INT NOT NULL, 
NAME VARCHAR(20) NOT NULL, 
AGE INT NOT NULL, 
ADDRESS CHAR(25), 
SALARY DECIMAL(18, 2), 
PRIMARY KEY(ID));

Let us insert r values into it −

insert INTO CUSTOMERS VALUES(1, 'Ramesh', 32, 'Ahmedabad', 2000.00);
insert INTO CUSTOMERS VALUES(2, 'Khilan', 25, 'Delhi', 1500.00);
insert INTO CUSTOMERS VALUES(3, 'kaushik', 23, 'Kota', 2000.00);
insert INTO CUSTOMERS VALUES(4, 'Chaitali', 25, 'Mumbai', 6500.00);
insert INTO CUSTOMERS VALUES(5, 'Hardik', 27, 'Bhopal', 8500.00);
insert INTO CUSTOMERS VALUES(6, 'Komal', 22, 'MP', 4500.00);
insert INTO CUSTOMERS VALUES(7, 'Muffy', 24, 'Indore', 10000.00);

The table will be created as −

+----+----------+-----+-----------+----------+
| ID | NAME     | AGE | ADDRESS   | SALARY   |
+----+----------+-----+-----------+----------+
|  1 | Ramesh   |  32 | Ahmedabad |  2000.00 |
|  2 | Khilan   |  25 | Delhi     |  1500.00 |
|  3 | Kaushik  |  23 | Kota      |  2000.00 |
|  4 | Chaitali |  25 | Mumbai    |  6500.00 |
|  5 | Hardik   |  27 | Bhopal    |  8500.00 |
|  6 | Komal    |  22 | MP        |  4500.00 |
|  7 | Muffy    |  24 | Indore    | 10000.00 |
+----+----------+-----+-----------+----------+

Following query calculates the statistical standard variance of salary of all the customers −

SELECT VAR(SALARY) as st_var
from CUSTOMERS

Output

+------------------+
| st_var           |
+------------------+
| 11666666.6666667 |
+------------------+

Example

The following query returns all the customers whose salary is greater than the square root of salary standard variance −

SELECT NAME, SALARY, AGE,ADDRESS
FROM CUSTOMERS
WHERE SALARY > (SELECT SQRT(VAR(SALARY)) FROM CUSTOMERS)

Since, we all know from the above example that the square root of salary standard variance is approximately equals to 3415.65. Hence, while executing the above code we get the following output −

+----------+----------+-----+---------+
| NAME     | SALARY   | AGE | ADDRESS |
+----------+----------+-----+---------+
| Chaitali |  6500.00 |  25 | Mumbai  |
| Hardik   |  8500.00 |  27 | Bhopal  |
| Komal    |  4500.00 |  22 | MP      |
| Muffy    | 10000.00 |  24 | Indore  |
+----------+----------+-----+---------+

Example

Now, suppose based on the above table we want to calculate the standard variance of distinct (unique) age of the customers, then we can do so simply using the following query −

SELECT VAR(DISTINCT AGE) as st_var
from CUSTOMERS

Output

+------------------+
| st_var           |
+------------------+
| 13.1             |
+------------------+

Example

In here, we are trying to get the standard variance of salary of all customers whose age is greater than 24 −

SELECT VAR(Salary) AS st_var
FROM CUSTOMERS
WHERE AGE > 24;

Output of the above code is as follows −

+------------------+
| st_var           |
+------------------+
| 11729166.6666667 |
+------------------+
sql-aggregate-functions.htm
Advertisements