By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
Help with an interesting Postgres question: Why isn't an Index Only Scan used on a partition accessed via the parent table?.
create table views(id bigint, created_at timestamp);
create table items(id bigint, created_at timestamp);
insert into views(id, created_at) values
('1', '2018-12-28 22:46:35'),
('2', '2018-12-28 22:46:35'),
('3', '2018-12-28 22:46:35'),
('4', '2018-12-28 22:46:35'),
('5', '2018-12-28 22:46:35');
insert into items(id, created_at) values
('1', '2018-12-28 22:46:35');
5 rows affected
1 rows affected
select
dates.d as day,
count(v.*) as views_count,
count(i.*) as items_count
from (
select d from generate_series('2018-12-01'::date, '2018-12-30', '1 day' ) as d
) as dates
left join views as v on v.created_at::date = dates.d
left join items as i on i.created_at::date = dates.d
group by day order by day desc;
day | views_count | items_count |
---|---|---|
2018-12-30 00:00:00+00 | 0 | 0 |
2018-12-29 00:00:00+00 | 0 | 0 |
2018-12-28 00:00:00+00 | 5 | 5 |
2018-12-27 00:00:00+00 | 0 | 0 |
2018-12-26 00:00:00+00 | 0 | 0 |
2018-12-25 00:00:00+00 | 0 | 0 |
2018-12-24 00:00:00+00 | 0 | 0 |
2018-12-23 00:00:00+00 | 0 | 0 |
2018-12-22 00:00:00+00 | 0 | 0 |
2018-12-21 00:00:00+00 | 0 | 0 |
2018-12-20 00:00:00+00 | 0 | 0 |
2018-12-19 00:00:00+00 | 0 | 0 |
2018-12-18 00:00:00+00 | 0 | 0 |
2018-12-17 00:00:00+00 | 0 | 0 |
2018-12-16 00:00:00+00 | 0 | 0 |
2018-12-15 00:00:00+00 | 0 | 0 |
2018-12-14 00:00:00+00 | 0 | 0 |
2018-12-13 00:00:00+00 | 0 | 0 |
2018-12-12 00:00:00+00 | 0 | 0 |
2018-12-11 00:00:00+00 | 0 | 0 |
2018-12-10 00:00:00+00 | 0 | 0 |
2018-12-09 00:00:00+00 | 0 | 0 |
2018-12-08 00:00:00+00 | 0 | 0 |
2018-12-07 00:00:00+00 | 0 | 0 |
2018-12-06 00:00:00+00 | 0 | 0 |
2018-12-05 00:00:00+00 | 0 | 0 |
2018-12-04 00:00:00+00 | 0 | 0 |
2018-12-03 00:00:00+00 | 0 | 0 |
2018-12-02 00:00:00+00 | 0 | 0 |
2018-12-01 00:00:00+00 | 0 | 0 |