79551178

Date: 2025-04-02 17:21:37
Score: 0.5
Natty:
Report link

I unzipped and then zipped:

SELECT
    boxes.box_id,
    ARRAY_AGG(contents.label)
FROM
    boxes,
    LATERAL FLATTEN(input => boxes.contents) AS item,
    contents
WHERE
    item.value = contents.content_id
GROUP BY boxes.box_id
ORDER BY boxes.box_id;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Bryan Crystal-Thurston