+3 votes
in Class 12 by kratos

Given'Employee' table as follows :

| Employee_ID | Name | Commission |
| 101 | Sabhyata Sharma | Null |
| 102 | Divya Arora | 8900 |
| 103 | Faizal Zaldi | Nul1 |

What values will the following statements return?

SELECT COUNT(*) FROM Employee;

SELECT COUNT(Commission) FROM Employee;

1 Answer

+1 vote
by kratos
 
Best answer

3 Employee;

1 Commission Employee;

...