79455360

Date: 2025-02-20 17:32:58
Score: 0.5
Natty:
Report link
SELECT *
FROM parent p
JOIN child c ON p.parent_id = c.parent_id
WHERE c.child_id = (
    SELECT child_id
    FROM child
    WHERE parent_id = p.parent_id
    ORDER BY created_at DESC
    LIMIT 1
);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Jaxx0rr