SELECT 
    product_id, 
    COUNT(DISTINCT uid) cnt
FROM user_client_log ucl
WHERE step = 'order'
GROUP BY product_id
ORDER BY product_id
LIMIT 1