Removed subquery.

This commit is contained in:
Mike Cao 2022-07-22 22:20:40 -07:00
parent bf774b97fb
commit 374ce6bdb3
1 changed files with 3 additions and 7 deletions

View File

@ -19,11 +19,7 @@ export function getPageviewStats(
return rawQuery(
`
select
g.t as t,
g.y as y
from
(select ${getDateQuery('pageview.created_at', unit, timezone)} t,
select ${getDateQuery('pageview.created_at', unit, timezone)} t,
count(${count}) y
from pageview
${joinSession}
@ -31,8 +27,8 @@ export function getPageviewStats(
and pageview.created_at between $2 and $3
${pageviewQuery}
${sessionQuery}
group by 1) g
order by 1
group by 1
order by 1
`,
params,
);