Concept Flow - COUNT(*) vs COUNT(column) difference
Start Query
COUNT(*) counts all rows
COUNT(column) counts non-NULL values in that column
Return count result
End Query
The query starts, then COUNT(*) counts every row regardless of NULLs, while COUNT(column) counts only rows where the column is not NULL, then returns the count.