別のCOUNTのOVER句を使用して、1つのクエリで両方を実行できます
select
count(*) RecordsPerGroup,
COUNT(*) OVER () AS TotalRecords
from temptable
group by column_1, column_2, column_3, column_4
別のCOUNTのOVER句を使用して、1つのクエリで両方を実行できます
select
count(*) RecordsPerGroup,
COUNT(*) OVER () AS TotalRecords
from temptable
group by column_1, column_2, column_3, column_4