Consider the friends table is given by the following information:
mysql> SELECT * FROM friends;
Which of the following SELECT statements are valid?
A.
SELECT firstname FROM friends
B.
SELECT lastname, age, 1 FROM friends
C.
SELECT ‘age’
D.
SELECT ‘age’ WHERE ‘age’ > 30