Oracle
 sql >> Database >  >> RDS >> Oracle

Sostituisci la funzione in Oracle SQL

Questo è davvero strano. Invece, ordiniamo nell'ordine inverso:

select replace(replace('count(distinct <thiscol>) over (partition by <nextcol>) / count(*) over () as <thiscol>_<nextcol>,',
                       '<thiscol>', column_name
                      ), '<nextcol>', lead(column_name) over (order by column_id desc)
              )
from all_tab_columns atc
where table_name = 'mytable';

Nota il desc nell'ordinamento.