PLS-00231 function 'string' may not be used in SQL Action Remove the function call from the SQL statement. Or, replace the function call with a local variable. For example, the following statement is illegal: INSERT INTO errors VALUES (SQLCODE, SQLERRM); However, you can assign the values...
ORA-06550:第7行,第7栏: pls-00231:函数TESTDC不能在SQL中使用 ORA-06550:第7行,第7列: PL/SQL: ORA-00904::无效标识符 ORA-06550:第7行,第7列: PL/ SQL :忽略SQL语句 有什么更好的方法来测试这些功能呢? oracle plsql 广告 腾讯云OCR文字识别特惠 文字识别限时抢购,热门产品低至14.9元关注问题分享...
PLS-00231错误:function name may not be used in SQL 2013-04-25 编译时提示这个错误,搜了下,原来是因为如果该函数没有在包头定义的话,sql语句是见不到该函数的,因此如果想在sql级别使用这个函数,只能在包头上定义该函数,即只能作为公有的暴露出来了,否则只能采用plsql的方式即 xxxx := function; 具体可以参...
4) PLS-00231