我可以执行这样的查询吗?如果没有,您能否给我一个更好的方法来做到这一点,而无需遍历我的阵列或使其内爆。
....
DECLARE
examples example[];
myinput myinput[];
BEGIN
select array(select e from mytable e where row_id in (myinput)) into examples
...
我可以执行这样的查询吗?如果没有,您能否给我一个更好的方法来做到这一点,而无需遍历我的阵列或使其内爆。
....
DECLARE
examples example[];
myinput myinput[];
BEGIN
select array(select e from mytable e where row_id in (myinput)) into examples
...