oracle 的if语句
我在使用insert语句插入一行记录后,运行如下代码,应该如何纠正?SQL>begin2if(selectidfromtest)>03thenrollback;4else...
我在使用insert语句插入一行记录后,运行如下代码,应该如何纠正?
SQL> begin
2 if (select id from test)>0
3 then rollback;
4 else
5 commit;
6 end if;
7 end;
8 /
if (select id from test)>0
*
第 2 行出现错误:
ORA-06550: 第 2 行, 第 5 列:
PLS-00103: 出现符号 "SELECT"在需要下列之一时:
( - + case mod new not
null <an identifier> <a double-quoted delimited-identifier>
<a bind variable> continue avg count current exists max min
prior sql stddev sum variance execute forall merge time
timestamp interval date
<a string literal with character set specification>
<a number> <a single-quoted SQL string> pipe
<一个带有字符集说明的可带引号的字符串文字>
<一个可带引号的 SQL 字符串> purge
ORA-06550: 第 2 行, 第 25 列:
PLS-00103: 出现符号 ">"在需要下列之一时:
) , and or 展开
SQL> begin
2 if (select id from test)>0
3 then rollback;
4 else
5 commit;
6 end if;
7 end;
8 /
if (select id from test)>0
*
第 2 行出现错误:
ORA-06550: 第 2 行, 第 5 列:
PLS-00103: 出现符号 "SELECT"在需要下列之一时:
( - + case mod new not
null <an identifier> <a double-quoted delimited-identifier>
<a bind variable> continue avg count current exists max min
prior sql stddev sum variance execute forall merge time
timestamp interval date
<a string literal with character set specification>
<a number> <a single-quoted SQL string> pipe
<一个带有字符集说明的可带引号的字符串文字>
<一个可带引号的 SQL 字符串> purge
ORA-06550: 第 2 行, 第 25 列:
PLS-00103: 出现符号 ">"在需要下列之一时:
) , and or 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询