COUNT
Returns the number of rows matching the condition. COUNT(*) counts all rows, COUNT(expr) counts only non-NULL values.
COUNT([DISTINCT] expr | *)
expr | *
An expression or *, to count the number of rows or values
Examples
SELECT COUNT(*)
FROM FamilyMembers;
SELECT COUNT(DISTINCT STATUS)
FROM FamilyMembers;