You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SELECT pid
FROM (
SELECT*FROM $planets
LEFT JOIN (
SELECT ARRAY_AGG(id) AS pids, planetId
FROM $satellites
GROUP BY planetId
) AS sats
ONsats.planetId= $planets.id
) as satellites
CROSS JOIN UNNEST(pids) AS pid
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: