ORA-13418: null or invalid parameter(s) for set functions
Cause: A parameter for set metadata operations was null or invalid.
Action: Check the documentation for information about the parameters.
ORA-13418: null or invalid parameter(s) for set functions 错误
这个错误提示你在执行使用集合函数的SQL语句的时候指定的参数为空或是无效的。
This error is thrown by Oracle when a set function is used with an invalid/null parameter. 集合函数必须指定一个有效的参数。
一个典型的案例是,当SQL语句试图使用一个空值作为参数时可能引发ORA-13418:
select count(my_column) from my_table where my_column is null;
只要你改变SQL语句,把参数设置为有效值就可以了:
select count(my_column) from my_table where my_column = ‘some_value’;