I have a users table and a hobbies table
users
id | name |
---+--------+
1 | John |
2 | Jim |
3 | Karen |
hobbies
id | user_id | hobby |
---+---------+---------+
1 | 1 | drawing |
2 | 1 | singing |
3 | 2 | coding |
4 | 2 | drawing |
6 | 3 | chess |
7 | 3 | coding |
I need an SQL query that can count how many users DON'T have 'drawing' or 'singing' as a hobby. In this example, only Karen would be counted, as they are the only one who does not like singing or drawing.