Multiple choice technology databases With SQL, how can you return the number of records in the "Persons" table? SELECT COLUMNS() FROM Persons SELECT COUNT(*) FROM Persons SELECT COUNT() FROM Persons SELECT COLUMNS(*) FROM Persons Reveal answer Fill a bubble to check yourself B Correct answer Explanation To count records in SQL, use the COUNT(*) aggregate function. Option B shows the correct syntax. COUNT() without asterisk (option C) is incomplete, and SELECT COLUMNS() is not valid for counting records.