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));
我想查找哪些用户发送的邮件多于收到的邮件。我知道如何以不同的代码找到每个人,但我不知道如何比较这两个计数