一、存儲過程練習
(1)
DROP PROCEDURE IF EXISTS test12;
CREATE PROCEDURE test12()
BEGIN
DECLARE username VARCHAR(20);
DECLARE age INT;
DECLARE IDs INT;
DECLARE LOGINIDs VARCHAR(40);
DECLARE Done INT;
DECLARE var INT;
#申明遊標
DECLARE cur_user CURSOR FOR SELECT ID,LOGINID FROM `user`;
#CURSOR end mark
DECLARE CONTINUE HANDLER FOR SQLSTATE '02000' SET Done = 1;
SET age=7;
IF age<6 THEN
SELECT "age小於6";
END IF;
SET username = "db";
SELECT username;
#循環使用
SET var=0;
WHILE var<10 DO
SET var = var+1;
END WHILE;
SELECT var;
#遊標使用
OPEN cur_user;
FETCH cur_user INTO IDs,LOGINIDs;
SELECT LOGINIDs;
WHILE Done<1 DO
FETCH cur_user INTO IDs,LOGINIDs;
SELECT IDs,LOGINIDs;
END WHILE;
CLOSE cur_user;
END
(2)
DROP PROCEDURE IF EXISTS test13;
CREATE PROCEDURE test13(OUT temp_count INT)
BEGIN
DECLARE IDs INT;
DECLARE LOGINIDs VARCHAR(40);
DECLARE Done INT DEFAULT 0;
#申明遊標
DECLARE cur_user CURSOR FOR SELECT ID,LOGINID FROM `user` LIMIT 20;
#CURSOR end mark
DECLARE CONTINUE HANDLER FOR NOT FOUND SET Done = 1;
#DROP TEMPORARY TABLE IF EXISTS temp_table;
CREATE TEMPORARY TABLE IF NOT EXISTS temp_table(
ID INT PRIMARY KEY,
LOGINID VARCHAR(40)
)ENGINE=InnoDB;
#遊標使用
OPEN cur_user;
REPEAT
FETCH cur_user INTO IDs,LOGINIDs;
IF Done=0 THEN
INSERT INTO temp_table VALUES(IDs,LOGINIDs);
END IF;
UNTIL Done=1 END REPEAT;
SELECT * FROM temp_table;
SELECT COUNT(1) INTO temp_count FROM temp_table;
CLOSE cur_user;
TRUNCATE TABLE temp_table;
END
(3)
DROP FUNCTION IF EXISTS test_fun;
CREATE FUNCTION test_fun(a INT) RETURNS VARCHAR(300)
BEGIN
RETURN "hello";
END
SELECT test_fun(1)
drop procedure if exists pro_rep_shadow_rs;
delimiter |
----------------------------------
-- rep_shadow_rs
-- 用來處理信息的增長,更新和刪除
-- 每次只更新上次以來沒有作過的數據
-- 根據不一樣的標誌位
-- 須要一個輸出的參數,
-- 若是返回爲0,則調用失敗,事務回滾
-- 若是返回爲1,調用成功,事務提交
--
-- 測試方法
-- call pro_rep_shadow_rs(@rtn);
-- select @rtn;
----------------------------------
create procedure pro_rep_shadow_rs(out rtn int)
begin
-- 聲明變量,全部的聲明必須在非聲明的語句前面
declare iLast_rep_sync_id int default -1;
declare iMax_rep_sync_id int default -1;
-- 若是出現異常,或自動處理並rollback,但再也不通知調用方了
-- 若是但願應用得到異常,須要將下面這一句,以及啓動事務和提交事務的語句所有去掉
declare exit handler for sqlexception rollback;
-- 查找上一次的
select eid into iLast_rep_sync_id from rep_de_proc_log where tbl='rep_shadow_rs';
-- 若是不存在,則增長一行
if iLast_rep_sync_id=-1 then
insert into rep_de_proc_log(rid,eid,tbl) values(0,0,'rep_shadow_rs');
set iLast_rep_sync_id = 0;
end if;
-- 下一個數字
set iLast_rep_sync_id=iLast_rep_sync_id+1;
-- 設置默認的返回值爲0:失敗
set rtn=0;
-- 啓動事務
start transaction;
-- 查找最大編號
select max(rep_sync_id) into iMax_rep_sync_id from rep_shadow_rs;
-- 有新數據
if iMax_rep_sync_id>=iLast_rep_sync_id then
-- 調用
call pro_rep_shadow_rs_do(iLast_rep_sync_id,iMax_rep_sync_id);
-- 更新日誌
update rep_de_proc_log set rid=iLast_rep_sync_id,eid=iMax_rep_sync_id where tbl='rep_shadow_rs';
end if;
-- 運行沒有異常,提交事務
commit;
-- 設置返回值爲1
set rtn=1;
end;
|
delimiter ;
drop procedure if exists pro_rep_shadow_rs_do;
delimiter |
---------------------------------
-- 處理指定編號範圍內的數據
-- 須要輸入2個參數
-- last_rep_sync_id 是編號的最小值
-- max_rep_sync_id 是編號的最大值
-- 無返回值
---------------------------------
create procedure pro_rep_shadow_rs_do(last_rep_sync_id int, max_rep_sync_id int)
begin
declare iRep_operationtype varchar(1);
declare iRep_status varchar(1);
declare iRep_Sync_id int;
declare iId int;
-- 這個用於處理遊標到達最後一行的狀況
declare stop int default 0;
-- 聲明遊標
declare cur cursor for select id,Rep_operationtype,iRep_status,rep_sync_id from rep_shadow_rs where rep_sync_id between last_rep_sync_id and max_rep_sync_id;
-- 聲明遊標的異常處理,設置一個終止標記
declare CONTINUE HANDLER FOR SQLSTATE '02000' SET stop=1;
-- 打開遊標
open cur;
-- 讀取一行數據到變量
fetch cur into iId,iRep_operationtype,iRep_status,iRep_Sync_id;
-- 這個就是判斷是否遊標已經到達了最後
while stop <> 1 do
-- 各類判斷
if iRep_operationtype='I' then
insert into rs0811 (id,fnbm) select id,fnbm from rep_shadow_rs where rep_sync_id=iRep_sync_id;
elseif iRep_operationtype='U' then
begin
if iRep_status='A' then
insert into rs0811 (id,fnbm) select id,fnbm from rep_shadow_rs where rep_sync_id=iRep_sync_id;
elseif iRep_status='B' then
delete from rs0811 where id=iId;
end if;
end;
elseif iRep_operationtype='D' then
delete from rs0811 where id=iId;
end if;
-- 讀取下一行的數據
fetch cur into iId,iRep_operationtype,iRep_status,iRep_Sync_id;
end while; -- 循環結束
close cur; -- 關閉遊標
end;
|