如何比较计数结果的两列?

时间:2019-05-15 17:58:23

标签: mysql

CREATE TABLE Users(uid int PRIMARY KEY, name text, phone text);
CREATE TABLE Messages( recipient int REFERENCES Users(uid),
sender int REFERENCES Users(uid), time timestamp NOT NULL, 
message text NOT NULL, PRIMARY KEY (recipient, sender, time));

我想查找哪些用户发送的邮件多于收到的邮件。我知道如何以不同的代码找到每个人,但我不知道如何比较这两个计数

0 个答案:

没有答案