Multiple choice technology programming languages

COUNT will consider NULL values in the column while counting.

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

COUNT ignores NULL values when counting a specific column. COUNT(*) returns all rows including NULLs, but COUNT(column_name) excludes rows where that column is NULL. This is important distinction when you need accurate counts of non-null values.