Select only the title and year properties of items with the value 'non-fiction' in the genre column.
title
year
'non-fiction'
genre
Make sure to pick SELECT followed by title, year and then WHERE, genre = 'non-fiction'.
SELECT
title, year
WHERE
genre = 'non-fiction'