假设我有下面的两个表格,我如何找到所有没有 (0) 答案的问题?
question
---------
id
content
和
answer
------
id
question_id
content
IE,question 1->* answers
- 编辑 -
要添加到我的问题,我将如何检索每个问题的答案计数?
假设我有下面的两个表格,我如何找到所有没有 (0) 答案的问题?
question
---------
id
content
和
answer
------
id
question_id
content
IE,question 1->* answers
- 编辑 -
要添加到我的问题,我将如何检索每个问题的答案计数?
select * from question q where not exists (select 1 from answer a where a.question_id=q.id)
回答已编辑的问题:
select q.id, content, count(a.id)
from question q
left outer join answer a
on q.id = a.question_id
group by q.id
您可以使用以下查询找到。
Select * from question where id not in (Select question_id from answer)