What data would be returned from this SQL statement? 1 point SELECT firstname FROM Book WHERE firstname LIKE R%;
A) Returns data from the column named "firstname" from the "Book" table if the "firstname" contains an ‘R’
B) Returns data in the row whose primarv kev is "firstname" from the "Book" table if the first letter of the Book name is ‘R’
C) Returns data from the column named "firstname" from the "Book" table if the first letter of "firstname" is NOT ‘R’
D) Returns data from the column named "firstname" from the "Book" table if the first etter of "firstname" is 'R'