在 MySQL 中,我想对表table1
和table2
.
我只想获取今天和昨天的相关计数table2
,code
但我也希望能够看到code
计数为 0 的其他类型。这就是我到目前为止所拥有的
SELECT h.code, count(h.code) as count, h.timestamp
FROM table1 h LEFT OUTER JOIN table2 o ON h.code= o.code
GROUP BY h.code
UNION
SELECT h.code, count(h.code) as count, h.timestamp
FROM table1 h RIGHT OUTER JOIN table2 o ON h.code= o.code
GROUP BY h.code
所以我想申请这样的东西
WHERE h.timestamp >= CURRENT_DATE - INTERVAL 1
但也包括 table1 中的所有记录,但计数为 0
我希望这是有道理的,希望有人能提供帮助!