SELECT toStartOfHour(visited) as slot, count(user_id) as total
FROM default.table_visitors
WHERE place_id = 333
GROUP BY slot
) ANY RIGHT JOIN
(
SELECT arrayJoin(
timeSlots(
toDateTime(addDays(now(), -1)),
toUInt32(
toRelativeSecondNum(now()) - toRelativeSecondNum(addDays(now(), -1))
),
toUInt32(60 * 60)
)
) AS slot
) USING (slot)
ORDER BY slot
Второй:
SELECT total, toDateTime(slot, 'UTC') as created
FROM (
SELECT toStartOfHour(visited) as slot, count(user_id) as total
FROM default.table_visitors
GROUP BY slot
) ANY RIGHT JOIN
(
SELECT arrayJoin(
timeSlots(
toDateTime(addDays(now(), -1)),
toUInt32(
toRelativeSecondNum(now()) - toRelativeSecondNum(addDays(now(), -1))
),
toUInt32(60 * 60)
)
) AS slot
) USING (slot)
ORDER BY slot
Оба получают данные за день, сгрупированные по часам. Запросы отличаются только одним условием: WHERE place_id=333. После выполнения запросов даныые первого делятся на второй. Вопрос: можно ли "объединить" эти запросы в один и "поделить" на стороне кликхауса?
да, через countIf(user_id, place_id=333)
Обсуждают сегодня