这是我的查询:
select COUNT(*) as total, COUNT(distinct user) as unique
FROM table
WHERE uristem in ('/example/', '/example/', '/example/', '/example/')
and time > DATE_SUB(NOW(), INTERVAL 24 HOUR)'
group by uristem;
应该看起来像这样
100 50
25 50
0 0
100 35
但是如果没有计数,它看起来像这样(缺失)
100 50
40 50
100 35
我怎样才能填写 0 呢?