sql >> Database >  >> RDS >> Oracle

Krijg tellingen van UNIEKE records OVERALL per waarde

Ik heb de tabel gemaakt om te testen:

create table nr_pvo_120 (
   otherid,
   fax
)
as
select 12365092    , 2762364204 from dual union all
select 12005656    , 2762364204 from dual union all
select 12484936    , 2762364204 from dual union all
select 39003042    , 2762364204 from dual union all
select 12365597    , 2762364204 from dual union all
select 12635922    , 2762364204 from dual union all
select 12332346    , 2762364204 from dual union all
select 12365092    , 4387267572 from dual union all
select 12005656    , 4387267572 from dual union all
select 12365092    , 4422911281 from dual union all
select 12005656    , 4422911281 from dual union all
select 12484936    , 4422911281 from dual union all
select 12651239    , 4422911281 from dual union all
select 12388710    , 4422911281 from dual union all
select 12686953    , 4422911281 from dual union all
select 12365092    , 4423311213 from dual union all
select 12005656    , 4423311213 from dual union all
select 12709544    , 4423311213 from dual union all
select 12484936    , 4423311213 from dual union all
select 12005656    , 4424450542 from dual union all
select 12346839    , 4424450542 from dual union all
select 12365120    , 4424450542 from dual union all
select 12484936    , 4424450542 from dual union all
select 12086512    , 4424450542 from dual
/

Mijn eerste kans zou zijn:voor elke persoon (otherid) krijg je zijn eerste alleen faxnummer en doe dan een normale groep door en reken daarop:

select first_fax, count(*) firstcount
  from (
   select otherid, min(fax) first_fax
     from nr_pvo_120
    group by otherid
       )
 group by first_fax
 order by first_fax
/

De uitvoer wordt:

 FIRST_FAX FIRSTCOUNT
---------- ----------
2762364204          7
4422911281          3
4423311213          1
4424450542          3

Toen zag ik dat uw gewenste uitvoer het vijfde faxnummer bevatte, maar met een telling van nul. Dat kan bijvoorbeeld als volgt:

select fax, count(*) normalcount, count(otherid_on_first_fax) countunused
  from (
   select fax, otherid,
          case
             when fax = min(fax) over (partition by otherid order by fax)
             then otherid
          end otherid_on_first_fax
     from nr_pvo_120
       )
 group by fax
 order by fax
/

In deze uitvoer, kolom NORMALCOUNT is het aantal mensen dat die fax heeft. Kolom COUNTUNUSED is het aantal mensen dat nog niet is "gebruikt" in de vorige tellingen:

       FAX NORMALCOUNT COUNTUNUSED
---------- ----------- -----------
2762364204           7           7
4387267572           2           0
4422911281           6           3
4423311213           4           1
4424450542           5           3

De truc is dat otherid_on_first_fax heeft alleen de waarde otherid op het eerste faxnummer van de persoon, voor de rest van de faxnummers van de persoon otherid_on_first_fax is niets. count(otherid_on_first_fax) telt vervolgens alle niet-null-waarden, waarvan er geen zijn voor fax 4387267572.



  1. Hoe genereer ik geneste json-objecten met behulp van mysql native json-functies?

  2. MySQL-equivalent van Oracle's SEQUENCE.NEXTVAL

  3. Hoe weekdagen in Oracle te identificeren?

  4. Dynamische kolommen naar rijen transponeren