1)SELECT COUNT(*) FROM Employee;
2)SELECT COUNT(ManagerId) FROM Employee;
First statement counts all the records including nulls
Second statement counts only non null records
Difference is small but very much important
1)SELECT COUNT(*) FROM Employee;
2)SELECT COUNT(ManagerId) FROM Employee;
First statement counts all the records including nulls
Second statement counts only non null records
Difference is small but very much important
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)