--循环 create or replace procedure p_xunhuan(input in number,output out number) is ); begin ; ..input loop begin output := input+temp; dbms_output.put_line('----'||output); end; end loop; end p_xunhuan; 运行存储过程: declare sr number;--输入参数 sc number;--输出参数…
本人收集的,挺有用的 1. 利用游标循环更新.删除MemberAccount表中的数据 DECLARE My_Cursor CURSOR --定义游标 FOR (SELECT * FROM dbo.MemberAccount) --查出需要的集合放到游标中 OPEN My_Cursor; --打开游标 FETCH NEXT FROM My_Cursor ; --读取第一行数据 WHILE @@FETCH_STATUS = 0 BEGIN --UPDATE dbo.MemberAccount SE…
create or replace procedure test_score(input in number,output out char) is begin then begin output := 'A'; end; end if; then begin output := 'B'; end; end if; then begin output := 'C'; end; end if; then begin output := 'D'; end; end if; then begin ou…
Delphi调用SQL分页存储过程实例 (-- ::)转载▼ 标签: it 分类: Delphi相关 //-----下面是一个支持任意表的 SQL SERVER2000分页存储过程 //----分页存储过程开始创建----------------------------------------------------------------------------------------------------------- IF EXISTS (SELECT name FROM sysobje…