select
    distinct
    right(order_id,4) product_id,
    count(*) over(partition by right(order_id,4))  cnt
from order_log
order by cnt desc
limit 1