वह वास्तव में है अनोखा। इसके बजाय, उल्टे क्रम में क्रमबद्ध करें:
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';
desc
पर ध्यान दें क्रम में।