select uid, count(1) as cnt
from user_client_log
where step='order'
group by uid
order by count(1) desc, uid
limit 3