sql >> Base de Datos >  >> RDS >> PostgreSQL

Postgres ÚNETE con unnest

Ese es un mal diseño, pero aquí está su respuesta:

select f.id, f.follower, s.username, s.pic
from
    (
        select id, unnest("array") as follower
        from followers_arrays
    ) f
    inner join
    small_profiles s on f.follower = s.id