本文實例講述了MySQL存儲過程概念、原理與常見用法。分享給大家供大家參考,具體如下:
1、存儲過程的概念
在一些語言中,如pascal,有一個概念叫“過程”procedure,和“函數(shù)”function,在php中,沒有過程,只有函數(shù)。
過程:封裝了若干條語句,調用時,這些封裝體執(zhí)行
函數(shù):是一個有返回值的“過程”
總結:過程是一個沒有返回值的函數(shù)
在MySQL中:
我們把若干條sql封裝起來,起個名字 —— 過程
把此過程存儲在數(shù)據(jù)庫中 —— 存儲過程
2、創(chuàng)建存儲過程
create procedure procedureName()
begin
//--sql 語句
end$
3、查看已有的存儲過程
4、刪除存儲過程
drop procedure procedureName;
5、調用存儲過程
6、第一個存儲過程
注意:我這里已經(jīng)將MySQL的結束標識符改為$,如果要知道怎么設置為$,請參考我的另一篇文章:MySQL觸發(fā)器。
create procedure p1()
begin
select 2+3;
end$
調用:
顯示結果:
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、給存儲過程傳參
在定義存儲過程的括號中,可以聲明參數(shù),語法:
[in/out/inout] 參數(shù)名 參數(shù)類型
使用:
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、存儲過程參數(shù)的輸入輸出類型
主要有in、out、inout三種類型
需求:從1加到N
輸入型的數(shù)據(jù)是我們給出值,輸出型是我們給出變量名,用于乘裝輸出的變量值。
(1)in型,此時in為輸入行參數(shù),它能接受到我們的輸入
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$
調用:
輸出結果:
(2)out類型的參數(shù)
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為輸入型參數(shù),而@total為輸出型變量
select @total; --輸出@total變量
輸出結果:
(3)inout類型的參數(shù)
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常用函數(shù)大匯總》、《MySQL日志操作技巧大全》、《MySQL事務操作技巧匯總》及《MySQL數(shù)據(jù)庫鎖相關技巧匯總》
希望本文所述對大家MySQL數(shù)據(jù)庫計有所幫助。
您可能感興趣的文章:- mysql 存儲過程中變量的定義與賦值操作
- mysql存儲過程 游標 循環(huán)使用介紹
- MySQL存儲過程使用實例詳解
- MySQL存儲過程例子(包含事務,輸出參數(shù),嵌套調用)
- MySql存儲過程與函數(shù)詳解
- mysql 查詢數(shù)據(jù)庫中的存儲過程與函數(shù)的語句
- mysql 導入導出數(shù)據(jù)庫以及函數(shù)、存儲過程的介紹
- MySQL 有輸入輸出參數(shù)的存儲過程實例
- MySQL 存儲過程中執(zhí)行動態(tài)SQL語句的方法
- Mysql存儲過程和函數(shù)區(qū)別介紹
- MYSQL的存儲過程和函數(shù)簡單寫法
- MySQL存儲過程中游標循環(huán)的跳出和繼續(xù)操作示例