select product_name, cast(sum(price) as signed) as price
from user_client_log a join product_info b on a.product_id=b.product_id
where step='select'
group by a.product_id, product_name
order by sum(price) desc
limit 2