- 浏览: 25064 次
- 性别:
- 来自: 武汉
最新评论
-
suixinsuoyu12519:
if里面不一定必须使用begin和end关键字吧
Oracle存储过程之if 条件判断语句
文章列表
create or replace procedure Test1asstrresult varchar2(20);cursor cursor1 is select empno from emp; beginstrresult:='empno is ';for everyrow in cursor1 loop begin strresult:=everyrow.empno; dbms_output.put_line(strresult); end ;end loop;
end;
create or replace procedure Test1(numbera number)astestresult number(4);begintestresult:=0;for tempa in 0..numbera loop begin testresult:=testresult+tempa; end;end loop;dbms_output.put_line('the result is '||testresult);end;
注明:
单纯的oracle存储过程中使用for循环语句,特别要注意tempa不能作为操作目标对象。
create or replace procedure Test1(score in number)
as
begin
if(score>90) then begin dbms_output.put_line('the result is A'); end; elsif(score>80) then begin dbms_output.put_line('the result is B'); end ; end if;end;
注明:每一个end if对应一个if语句,每个if语句中要有begin和end关键字。
import java.util.Timer;import java.util.TimerTask;
public class Test extends TimerTask{ int number=1;
public static void main(String[] args) { Test test=new Test(); Timer timer=new Timer();
//第一次1秒钟后执行,以后每2秒执行一次 timer.schedule(test,1000,2000); } @Override public void run() { S ...
[/size][size=large][/color][color=red]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http:/[size=xx-large][/size]/www.w3.org/1999/xhtml">
<head>
<title>2 ...