Mysql
 sql >> Database >  >> RDS >> Mysql

Funzione di aggregazione dell'array MySQL come PostgreSQL array_agg

Vuoi usare GROUP_CONCAT() come

SELECT p.id, group_concat(pcb.users_admin_id) as uid
FROM properties p
INNER JOIN prop_captured_by pcb 
ON p.id = pcb.property_id
group by p.id;