select product_id
,count(product_id) cnt
from user_client_log
where step = 'order'
group by 1
order by 1
limit 1