select
channel,
count(distinct uid) as cnt
from user_info u
where uid not in(select uid from order_log)
group by channel
order by cnt desc,channel
limit 1;

select
channel,
count(distinct uid) as cnt
from user_info u
where uid not in(select uid from order_log)
group by channel
order by cnt desc,channel
limit 1;