select
p.product_name,
p.price*count(p.product_name) as total_sales
from user_client_log u left join product_info p
on u.product_id=p.product_id
where pay_method <>''
group by p.product_name,p.price
order by total_sales desc limit 2