select
    count(*) as cnt 
from user_info u 
where not exists (
    select 1 from order_log o 
    where u.uid = o.uid 
)