一.不带参数的游标for循环 首先编写存储过程的整体结构,如下: create or replace procedure test_proc is v_date date; --变量定义 begin select sysdate into v_date from dual; end test_proc; 定义游标: create or replace procedure test_proc is v_date date; --定义变量 cursor cur is select * from ld…