Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
JPQLで複数列の個別カウントを行う回避策はありますか?
JPQLはクエリで単一の式カウントのみをサポートしているようで、サブクエリはfrom部分で使用できないため、このように表現することはできません
select count(*) from (select distinct a, b, c from Entity e)