select substr(order_id,6,4) product_id,count(*) cnt
from order_log
group by substr(order_id,6,4)
order by cnt
limit 1