I have 2 tables:
table 1: questions (id, question, date)
table 2: answers (id, question_id, answer, date)
a question can have more than 1 answer, some questions don't have answers. I want to output only unanswered questions
a query like "SELECT * FROM questions
,answers
WHERE questions.id!=answers.question_id group by questions.id" doesn't work
can someone help a newbie like me, I'm so lost in all this mysql stuff :/ thanks everyone for your time!