select
	substr(order_id,instr(order_id,'_')+1,4) as product_id,
	count(*) as cnt
from 
	order_log
group by 
	substr(order_id,instr(order_id,'_')+1,4)
order by 
	cnt desc limit 1