KnowledgeBoat Logo

Computer Science

All aggregate functions except …………… ignore null values in their input collection.

  1. Count(attribute)
  2. Count(*)
  3. Avg
  4. Sum

SQL Joins & Grouping

1 Like

Answer

Count(*)

Reason — All aggregate functions, except for COUNT(*), ignore null values in their input collection. COUNT(*) returns all rows, including duplicates and nulls.

Answered By

1 Like


Related Questions