Postgres 10 does not allow to use unnest() like that any more. You need to use a lateral join: select id, t.i from the_table cross join lateral unnest(coalesce( ...
確定! 回上一頁