我有几个必须动态执行的更新语句。我正在使用立即执行来执行这两个更新语句。但是,这样做时出现以下错误:
ORA-00911: invalid character
ORA-06512: at line 7
00911. 00000 - "invalid character"
*Cause: identifiers may not start with any ASCII character other than ..
Run Code Online (Sandbox Code Playgroud)
是否存在限制,即“立即执行”中不能执行多个更新语句?
编辑:例如:
begin
EXECUTE IMMEDIATE 'UPDATE tt_TGT_TABLE SET PK_1 = ''Demand10'' where ROW_ID = 3923866 ; UPDATE tt_TGT_TABLE SET PK_1 = ''Demand11'' where ROW_ID = 3923868';
end;
Run Code Online (Sandbox Code Playgroud) 使用时
NSInteger *myInteger = 45 ;
Run Code Online (Sandbox Code Playgroud)
我收到警告信息,Incompatible Integer to pointer conversion sending 'NSInteger' (aka 'int') to parameter of type 'NSInteger *' (aka 'int *')
我已经阅读了另一篇有相同警告的帖子,但没有找到合适的解决方案.