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

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