MySql存儲過程 帶參數(shù)處理方式
添加時間:2014-2-23 17:48:25
添加:
思海網(wǎng)絡(luò)
下文介紹的MySql存儲過程是帶參數(shù)的存儲過程(動態(tài)執(zhí)行SQL語句),該MySql存儲過程是根據(jù)用戶輸入的條件和排序方式查詢用戶的信息,排序條件可以沒有調(diào)用方式:
call GetUsersDynamic('age<=30','');
- /********動態(tài)查詢用戶的信息********/
- CREATE PROCEDURE GetUsersDynamic(WhereCondition varchar(500),OrderByExpress varchar(100))
- begin
- declare stmt varchar(2000);
- if LENGTH(OrderbyExpress)>0 then
- begin
- set @sqlstr=concat('select id,name,password,age,getdate(adddate) as AddDate from users where ',WhereCondition,' order by ',OrderByExpress);
- end;
- else
- begin
- set @sqlstr=concat('select id,name,password,age,getdate(adddate) as AddDate from users where ',WhereCondition);
- end;
- end if;
- prepare stmt from @sqlstr;
- execute stmt;
- end;
getdate()是一個自定義的函數(shù),作用是返回日期的短格式
- CREATE DEFINER=`root`@`localhost` FUNCTION `getdate`($date datetime) RETURNS varchar(50) CHARSET latin1
- return date_format($date,'%Y-%m-%d');
動態(tài)插入數(shù)據(jù)的MySql存儲過程,(注意四個單引號表示一個一引號):
- CREATE DEFINER=`root`@`localhost` PROCEDURE `InsertUser`(in name2 varchar(50),in password2 varchar(32),in age2 int,in adddate2 datetime)
- begin
- DECLARE stmt varchar(2000);
- set @sqlstr=concat('insert into users(name,password,age,adddate) values(');
- set @sqlstr=concat(@sqlstr,'''',name2,'''',',','''',password2,'''',',',age2,',','''',adddate2,'''',')');
- prepare stmt from @sqlstr;
- execute stmt;
- end;
- 關(guān)鍵字:MySql、存儲過程
新文章:
- CentOS7下圖形配置網(wǎng)絡(luò)的方法
- CentOS 7如何添加刪除用戶
- 如何解決centos7雙系統(tǒng)后丟失windows啟動項
- CentOS單網(wǎng)卡如何批量添加不同IP段
- CentOS下iconv命令的介紹
- Centos7 SSH密鑰登陸及密碼密鑰雙重驗證詳解
- CentOS 7.1添加刪除用戶的方法
- CentOS查找/掃描局域網(wǎng)打印機(jī)IP講解
- CentOS7使用hostapd實現(xiàn)無AP模式的詳解
- su命令不能切換root的解決方法
- 解決VMware下CentOS7網(wǎng)絡(luò)重啟出錯
- 解決Centos7雙系統(tǒng)后丟失windows啟動項
- CentOS下如何避免文件覆蓋
- CentOS7和CentOS6系統(tǒng)有什么不同呢
- Centos 6.6默認(rèn)iptable規(guī)則詳解