我有 2 个不同的表格、用户和投票。我想查询按日期计算总用户数和总票数(不是总和)。 用户
id | created_at
选票
id | created_at
我希望结果如下所示:
date | total users | total votes
2012-06-01 | 50 | 90
2012-06-01 | 23 | 0*
2012-06-01 | 80 | 12
*应该考虑到有些日子没有投票
我知道如何进行 2 个单独的查询
SELECT DATE(created_at), count(id)
FROM vote
GROUP by DATE(created_at)
ORDER by DATE(created_at) DESC
但我不知道如何加入他们。