我有一个表(n2m),其中包含作者的 id 和他们的文章的 id。我正在计算表格中只有一篇文章的作者人数。我正在使用以下查询:
select count(*) from authors_articles
where AutID in
(
select AutID
from authors_articles
group by AutID
having count(distinct articleID) = 1
)
现在,我想知道我的查询是否正确,无论如何我可以改进这个查询以使其更快!?
非常感谢,