작성
·
163
0
웹 접속 및 사용분석 실습 1번 파일입니다.
select :current_date , count(distinct user_id) as dau
from ga_sess
where visit_stime >= (:current_date - interval '1 days') and visit_stime < :current_date.
위 코드의 count()는 왜 group by 없이도 작동하는 것인가요?
답변 1
0
안녕하십니까,
group by 없이 aggregate 함수 적용이 가능합니다.
group by 가 없이 aggregation 함수를 수행하면 전체 테이블을 기준으로 aggregation을 적용하여 단 한건의 결과만 추출 됩니다.
감사합니다.