Multiple choice technology databases COUNT(*) returns the number of items in a group - which of the below is correct? This includes NULL values and duplicate This includes NULL values but not the duplicates This does not include NULL values and duplicates None of the above Reveal answer Fill a bubble to check yourself A Correct answer Explanation The COUNT(*) function in SQL counts all rows that match the query criteria, including rows containing duplicate values and rows containing NULL values, unlike COUNT(column_name) which ignores NULLs.