select
u.channel,
count(*) as cnt
from user_info u left join order_log o
on u.uid=o.uid
where o.order_id is null
group by u.channel
order by cnt desc,u.channel asc limit 1