PostgresSQL函数:选择查询中in子句的函数参数类型?

时间:2019-04-23 18:58:55

标签: database postgresql function

我在下面定义了一个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)

谢谢

0 个答案:

没有答案