KnowledgeBoat Logo

Computer Science

COUNT(field_name) tallies only those rows that contain a value; it ignores all null values.

SQL Joins & Grouping

1 Like

Answer

True

Reason — When we use COUNT(field_name), it counts only the rows where the specified field (field_name) is not null. It does ignore null values for that specific field during counting.

Answered By

2 Likes


Related Questions