SELECT
    COUNT(*) AS 未下单人数
FROM order_log AS a
RIGHT JOIN user_info AS b
    ON a.uid = b.uid
WHERE a.uid IS NULL;