Code a query to select books with a genre different from 'fiction' that were published after 1990.
genre
'fiction'
Make sure to pick WHERE followed by != 'fiction' and then AND, year, >, 1990.
WHERE
!= 'fiction'
AND
year
>
1990