Pokud chcete jednoduše aktualizovat svou tabulku s prioritou, vypadala by takto:
update my_table x
set popularity = ( select count(distinct state)
from my_table
where fruit = x.fruit )
Pokud chcete vybrat data, můžete použít analytický dotaz:
select state, fruit
, count(distinct state) over ( partition by fruit ) as popularity
from my_table
To poskytuje počet různých stavů na ovoce.