With SQL, how do you select all the records from a table named "Persons" where the "LastName" is alphabetically between (and including) "FreeTime" and "Learning"?
Correct Answer : Option (A)
SELECT * FROM Persons WHERE LastName BETWEEN 'FreeTime' AND 'Learning'