InterviewSolution
Saved Bookmarks
| 1. |
What values does the count(*) function ignore?(a) Repetitive values(b) Null values(c) Characters(d) IntegersThe question was asked in semester exam.The doubt is from Aggregate Functions in section Introduction to Relational Model and Sql of RDBMS |
|
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. |
|