InterviewSolution
Saved Bookmarks
| 1. |
What values does the count(*) function ignore?(a) Repetitive values(b) Null values(c) Characters(d) Integers |
|
Answer» Right choice is (b) Null values The best I can explain: The count(*) aggregation function ignores null values while calculating the number of values in a particular attribute. |
|