sql >> Base de Datos >  >> RDS >> Oracle

Obtener recuentos de registros ÚNICOS GENERALES por valor

Hice la tabla para probar:

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
/

Mi primera oportunidad sería:para cada persona (otherid) obtenga su primero número de fax solamente y luego hacer un grupo normal por y contar con eso:

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
/

La salida será:

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

Luego noté que su salida deseada incluía el quinto número de fax pero con un conteo de cero. Eso se puede hacer, por ejemplo, así:

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
/

En esta salida, columna NORMALCOUNT es el número de personas que tienen ese fax. Columna COUNTUNUSED es el número de personas que aún no han sido "utilizadas" en los recuentos anteriores:

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

El truco es que otherid_on_first_fax solo tiene el valor de otherid en el primer número de fax de la persona, para el resto de personas, números de fax otherid_on_first_fax es nulo. count(otherid_on_first_fax) luego cuenta todos los valores no nulos, de los cuales no hay ninguno para el fax 4387267572.