Multiple choice technology databases How do you find the total number of rows in a table ? SELECT COUNT * SELECT COUNT(*) SELECT COUNT[*] SELECT COUNT(ALL) Reveal answer Fill a bubble to check yourself B Correct answer Explanation COUNT(*) is the correct SQL syntax to count all rows in a table. The parentheses are required for the COUNT function, and the asterisk indicates all rows should be counted regardless of NULL values.