CREATETABLE Users(
uid int PRIMARYKEY,
name text,
phone text);CREATETABLE Messages(
recipient int REFERENCES Users(uid),
sender int REFERENCES Users(uid),
time timestamp NOTNULL,
message text NOTNULL,PRIMARYKEY(recipient, sender, time));
I cant find a way how to find the users that have more messages as recipients than senders. I know how to find each one but i don't know thw way to combine them and compare them