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