本文實例講述了MySQL存儲過程概念、原理與常見用法。分享給大家供大家參考,具體如下:
成都服務器托管,創(chuàng)新互聯(lián)公司提供包括服務器租用、成都移動機房托管、帶寬租用、云主機、機柜租用、主機租用托管、CDN網站加速、域名申請等業(yè)務的一體化完整服務。電話咨詢:028-86922220
1、存儲過程的概念
在一些語言中,如pascal,有一個概念叫“過程”procedure,和“函數”function,在php中,沒有過程,只有函數。
過程:封裝了若干條語句,調用時,這些封裝體執(zhí)行
函數:是一個有返回值的“過程”
總結:過程是一個沒有返回值的函數
在MySQL中:
我們把若干條sql封裝起來,起個名字 —— 過程
把此過程存儲在數據庫中 —— 存儲過程
2、創(chuàng)建存儲過程
create procedure procedureName() begin //--sql 語句 end$
3、查看已有的存儲過程
show procedure status
4、刪除存儲過程
drop procedure procedureName;
5、調用存儲過程
call procedureName();
6、第一個存儲過程
注意:我這里已經將MySQL的結束標識符改為$,如果要知道怎么設置為$,請參考我的另一篇文章:MySQL觸發(fā)器。
create procedure p1() begin select 2+3; end$
調用:
call p1();
顯示結果:
7、引入變量
存儲過程是可以編程的,意味著可以使用變量,表達式,控制結構來完成復雜的功能,在存儲過程中,用declare聲明變量:
declare 變量名 變量類型 [default 默認值]
使用:
create procedure p2() begin declare age int default 18; declare height int default 180; select concat('年齡:',age,'身高:',height); end$
顯示結果:
8、引入表達式
存儲過程中,變量可以在sql語句中進行合法的運算,如+-*/。變量的賦值形式:
set 變量名:= expression
使用:
create procedure p3() begin declare age int default 18; set age := age + 20; select concat('20年后年齡:',age); end$
顯示結果:
9、引入選擇控制結構
格式:
if condition then statement elseif statement else statement end if;
使用:
create procedure p4() begin declare age int default 18; if age >= 18 then select '已成年'; else select '未成年'; end if; end$
顯示結果:
10、給存儲過程傳參
在定義存儲過程的括號中,可以聲明參數,語法:
[in/out/inout] 參數名 參數類型
使用:
create procedure p5(width int,height int) begin select concat('你的面積是:',width * height) as area; if width > height then select '你比較胖'; elseif width < height then select '你比較瘦'; else select '你比較方'; end if; end$
顯示結果:
11、使用while循環(huán)結構
需求:從1加到100
使用:
create procedure p6() begin declare total int default 0; declare num int default 0; while num <= 100 do set total := total + num; set num := num + 1; end while; select total; end$
顯示結果:
12、存儲過程參數的輸入輸出類型
主要有in、out、inout三種類型
需求:從1加到N
輸入型的數據是我們給出值,輸出型是我們給出變量名,用于乘裝輸出的變量值。
(1)in型,此時in為輸入行參數,它能接受到我們的輸入
create procedure p7(in n int) begin declare total int default 0; declare num int default 0; while num <= n do set total := total + num; set num := num + 1; end while; select total; end$
調用:
call p7(100);
輸出結果:
(2)out類型的參數
create procedure p8(in n int,out total int) begin declare num int default 0; set total := 0; while num <= n do set total := total + num; set num := num + 1; end while; end$
調用:
call p8(100,@total); --100為輸入型參數,而@total為輸出型變量 select @total; --輸出@total變量
輸出結果:
(3)inout類型的參數
create procedure p9(inout age int) begin set age := age+20; end$
調用:
set @age = 18; --設置@age變量為18 call p9(@age); --調用p9存儲過程,@age變量為實參 select @age; --顯示@age變量
輸出結果:
inout型變量的實參也是一個變量名,這個變量在存儲過程中既作為輸入變量,又作為輸出變量。
13、case結構的用法
使用:
create procedure p10() begin declare pos int default 0; set pos := floor(5*rand()); case pos when 1 then select '仍然在飛'; when 2 then select '落在海里'; when 3 then select '落在陸上'; else select '我不知道在哪里'; end case; end$
輸出結果:
14、repeat循環(huán)結構
格式:
[begin_label:] REPEAT statement_list UNTIL search_condition END REPEAT [end_label]
需求:從1加到100
create procedure p11() begin declare total int default 0; declare num int default 0; r:repeat set total:= total + num; set num:=num + 1; until num > 100 end repeat r; select total; end$
輸出結果:
更多關于MySQL相關內容感興趣的讀者可查看本站專題:《MySQL存儲過程技巧大全》、《MySQL常用函數大匯總》、《MySQL日志操作技巧大全》、《MySQL事務操作技巧匯總》及《MySQL數據庫鎖相關技巧匯總》
希望本文所述對大家MySQL數據庫計有所幫助。