select service_id,
cast(count(*) FILTER (WHERE day = 'monday') as integer) as monday,
cast(count(*) FILTER (WHERE day = 'tuesday') as integer) as tuesday,
cast(count(*) FILTER (WHERE day = 'wednesday') as integer) as wednesday,
cast(count(*) FILTER (WHERE day = 'thursday') as integer) as thursday,
cast(count(*) FILTER (WHERE day = 'friday') as integer) as friday,
cast(count(*) FILTER (WHERE day = 'saturday') as integer) as saturday,
cast(count(*) FILTER (WHERE day = 'sunday') as integer) as sunday,
(select min(date) from data_src) as start_date,
(select max(date) from data_src) as end_date,
from (select distinct service_id, lower(dayname(strptime(date, '%Y%m%d'))) as day
from data_src order by 1) group by service_id