文件名称:oracle总结辅导书
文件大小:5KB
文件格式:TXT
更新时间:2014-08-06 21:46:23
oracle
游标 显式游标 1声明 cursor 名称 is 查询语句 2 打开游标 open 游标名 例: declare Cursor stu_cur is select * from student; begin open stu_cur; dbms_output.put_line(stu_cur%rowcount); end;
文件名称:oracle总结辅导书
文件大小:5KB
文件格式:TXT
更新时间:2014-08-06 21:46:23
oracle
游标 显式游标 1声明 cursor 名称 is 查询语句 2 打开游标 open 游标名 例: declare Cursor stu_cur is select * from student; begin open stu_cur; dbms_output.put_line(stu_cur%rowcount); end;