我有一个包含作者姓名、书名和出版年份的表格。时间段从2000年到2010年。
我希望选择在研究时间间隔内的每一年都发表过(至少一次)的作者。我该怎么做呢?敬请指教。
发布于 2013-02-03 03:10:15
select *
from pubs
where author in
(
select author
from pubs
where publicationYear between 2000 and 2010
group by
author
having
count(distinct publicationYear) = 11
)https://stackoverflow.com/questions/14665345
复制相似问题