我在下面定义了一个postgres函数。
create or replace function example(anArray int[])
returns setof example
as $$
select *
from example where example.ex in (anArray);
$$
language plpgsql;
我的问题是,为了正确计算in子句,anArray参数需要是什么类型?您将如何称呼它?
select * from example(123,123)
谢谢