COUNT(*) to count all rows including NULLs,COUNT(column_name) to count only non-NULL entries.Give the output of the query: SELECT MONTH("2010-03-05");
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;