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