Raggruppa per advert_id
e usa un'aggregazione condizionale
select advert_id,
sum(type = 'click') as clicks,
sum(type = 'view') as views
from your_table
group by advert_id
Raggruppa per advert_id
e usa un'aggregazione condizionale
select advert_id,
sum(type = 'click') as clicks,
sum(type = 'view') as views
from your_table
group by advert_id