摘要:
/* 循环开始 */declare i number;beginfor i in 12..21 loopINSERT INTO liutest (id,name,password,age,address,phone,flag) VALUES (i,'liu','liuaaa',20,'testaddress','12121212122','1');end loop;end;/* 循环结束 *//* 游标开始 */set serveroutput on declare Lid liutest.id%type;Lnam
阅读全文