Suman has created a table named WORKER with a set of records to maintain the data of the construction sites, which consists of WID, WNAME, WAGE, HOURS, TYPE, and SITEID. After creating the table, she entered data in it, which is as follows : 
WNAME WAGE * HOURS Ahmed J 1500 * 200 = 300000 Anju S 1200 * 130 = 156000Calculates WAGE multiplied by HOURS for workers where SITEID is 103.
TYPE MAX(WAGE) MIN(WAGE) Unskilled 1500 780 Skilled 1200 520 Semiskilled 560 560Groups records by TYPE and finds the maximum and minimum WAGE for each group.
WNAME SITEID Jacob B 101 Ahmed J 103Filters rows where TYPE is "Unskilled" and sorts them by HOURS in ascending order.
Given the following table:
| ENO | SALARY |
|---|---|
| A101 | 4000 |
| B109 | NULL |
| C508 | 6000 |
| A305 | 2000 |
State the output of the following query:
SELECT COUNT(SALARY) FROM EMPLOYEE;