Which of these statements selects and displays nothing but "Robin"?

SELECT name
FROM friends
WHERE name = 'Robin';
SELECT *
FROM friends
WHERE name = 'Robin';
SELECT 'Robin'
FROM friends;
SELECT name
WHERE name = 'Robin';

Sweet! We need a select statement with three clauses: SELECT, which only selects the name column, FROM and WHERE.

Not quite! We need a select statement with three clauses: SELECT, which only selects the name column, FROM and WHERE.