来自 oracle sql 的等效红移 sql

equivalent redshift sql from oracle sql

redshift sql 中的 Oracle SQL in out 相当于什么?我正在尝试将一些 Oracle sql 翻译成亚马逊的 redshift sql 并且 in out 似乎是一个仅在 Oracle 中可用的自定义函数,在 redshift 中它的等价物是什么,我不能在文档中找不到任何内容。

例如:

(test in out go.go_report.line, param date, as_of varchar2, company varchar2)

returns 输出错误

Redshift 支持 INOUT 参数并且在文档 here 中明确提到

The argument mode can be IN, OUT, or INOUT. The default is IN.

在更多描述中:

INOUT arguments are input and output arguments at the same time. Input arguments include both IN and INOUT arguments, and output arguments include both OUT and INOUT arguments.