-
fetch作用查看全部
-
pl/sql接受键盘输入数字查看全部
-
记录型变量查看全部
-
pl/sql程序结构查看全部
-
使用存储过程打印hello world查看全部
-
遍历光标 fetch cursor into feild exit when cursor %notfound查看全部
-
定义光标遍历结果集查看全部
-
for 循环查看全部
-
循环loop exit end loop查看全部
-
while loop end loop查看全部
-
获取键盘输入查看全部
-
accept num prompt'请输入一个数字'; declare//声明 pnum number:=# begin if pnum = 0 then dbms_output.put_line("您输入数字是()"); elsif pnum=1 then dbms_output.put_line("您输入的是1"); elsif pnum=2 then dbms_output.put_line("您输入的是2"); else dbms_output.put_line("其他数字"); end if; end; /查看全部
-
引用型变量: my_name emp.ename%type; 记录型变量: emp_rec emp.rep%rowtype; dbms_output.put_line(emp_rec.ename||"他的薪水"||emp_rec.sal);查看全部
-
(1)if 条件 then 语句1; 语句2; end if; (2)if 条件 then 语句序列1; else 语句序列2; end if; (3)if 条件 then 语句; else 语句 then 语句; else 语句; end if; PL/SQL接收键盘输入的数字:accept num prompt "请输入一个数字";查看全部
-
PL/SQL赋值有两种方式:1、:= 2、into(into后面的变量顺序一定是跟前面的是一一对应)查看全部
举报
0/150
提交
取消