Just thought of learning SQL on my own and started with
I was practicing some tutorial and got stuck in one basic query.
After trying a lot I could not get it running.
Question is: in which years was the Physics prize awarded but no Chemistry prize.
Here is what I tried
SELECT yr
FROM nobel
WHERE subject ='Physics' AND
NOT (Select yr from nobel where subject = 'Chemistry')
Can someone help.