首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > oracle >

从sql server转oracle语法错误

2014-01-28 
从sql server转oracle语法错误:if not exists(select * from TSend, dual where FIsActive 1 and FToTime

从sql server转oracle语法错误:

if not exists(select * from TSend, dual where FIsActive = 1 and FToTime > = sysdate and Ftype = 2) then
--一分钟后返回一条错误信息
insert into xujp_96345_send_record(tele_num, content, flag_send)
select SEND_DEST, '当前没有可以投票的活动 ', -1 from dual;
commit;
return;
end if;

commit;不加也是这样, 把return 改成exit 也是这样。
请多多指点,谢谢

这条语句,编译通不过
Compilation errors for PROCEDURE JIAJIE.CMPP_PROC

Error: PLS-00103: 出现符号 "; "在需要下列之一时:
;
符号 ";在 "; " 继续之前已插入。
Line: 29
Text: end if;



------解决方法--------------------------------------------------------
; and ; are different.

        

热点排行