sql >> Database >  >> RDS >> Mysql

2 tellen(*)+groeperen op+hebben+meedoen

Zou deze zoekopdracht niet het gewenste resultaat opleveren?

select sum(un_ter), sum(u_t_a) from (
select 
count(distinct ut.tr_id) as un_ter, 
count(case when ut.ev_t = 'accident' then 1 end) as u_t_a
from un_tr ut
left join un_pl up ON  (ut.s_p_c = up.coo) or  (ut.d_c = up.coo) 
where up.gal = 'Zero' and date between '2018-06-01' and '2018-06-31'
group by ut.tr_id
having count(ut.ut_id)>1
) t1;



  1. Is inner join hetzelfde als equi-join?

  2. CSS-styling toepassen op PHP-uitvoer

  3. Strategieën om twee mySQL-databases (op afzonderlijke locaties) synchroon te houden?

  4. Zoekbereik van Postgres-tijdstempel optimaliseren