79800234

Date: 2025-10-26 18:26:37
Score: 0.5
Natty:
Report link

I am working on this exact same problem from that book. Building from the previous commenter Giorgos, this is what worked for me.

SELECT salestransaction.tid, SUM(includes.quantity) FROM salestransaction 
INNER JOIN includes ON salestransaction.tid = includes.tid
GROUP BY tid HAVING SUM(quantity) > 5;
Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: TRIPPING