数据准备
|
|
语法基础
if
|
|
case when
|
|
loop
|
|
while
|
|
for..in
|
|
goto
|
|
获取插入语句的返回值. 可以获取增删改返回的数据
|
|
自定数据类型
|
|
数组类型
|
|
行类型, 使用%ROWTYPE
|
|
定义表类型, 使用 TABLE
|
|
游标
游标基础
|
|
游标传递参数
|
|
## 游标指定当前行12345678910DECLARE userId STUDENTS.ID%type; i number(2) := 1; cursor all_stu is SELECT id,userName from students FOR UPDATE;BEGIN for userId in all_stu loop update students set id=i where CURRENT of all_stu;--当前行 i := i+1; end loop;END;
游标变量
|
|
游标变量 - 没有return
|
|