mysql存儲過程循環嵌套
『壹』 mysql 。就是用while 。mysql_fetch_array輸出的循環嵌套問題
你在你的代碼中加入個判斷就行了!
$sql=mysql_query("select * from tv_kc");
$sql2=mysql_query("select * from tv_jc");
while($row=mysql_fetch_array($sql)){
echo $row['kc_name'];
while($row1=mysql_fetch_array($sql2)){
if($row['a_id'] = $row1['a_id'])
echo $row1['jc_name'];
}
mysql_data_seek($sql2,0);
}
『貳』 mysql中的存儲過程怎麼使用
存儲過程(Stored Procere)是一組為了完成特定功能的SQL語句集功能是將常用或復雜的工作,預先用SQL語句寫好並用一個指定名稱存儲起來, 以後需要資料庫提供與已定義好的存儲過程的功能相同的服務時,只需調用 call 存儲過程名字, 即可自動完成命令。存儲過程是由流控制和SQL語句書寫的過程,這個過程經編譯和優化後存儲在資料庫伺服器中,可由應用程序通過一個調用來執行,而且允許用戶聲明變數 。同時,存儲過程可以接收和輸出參數、返回執行存儲過程的狀態值,也可以嵌套調用。
『叄』 Mysql循環嵌套問題!!
end while後面加上分號
『肆』 mysql中一個存儲過程中是不是只能有一個游標,不能多個游標
不是,,,,
可以多個游標,,,
游標和循環差不多,過程裡面可以有多個循環,自然也可以有多個游標,
而且還有嵌套游標
『伍』 mysql循環嵌套插入數據的問題
循環語句應該沒有問題
你看看你的userinfo表結構是不是有什麼限制
『陸』 mysql 的delete 怎麼和子循環使用
DELETE FROM SC USING SC,Course,Teacher
WHERE sc.cno=course.cno and course.tno=teacher.tno
and teacher.tname='諶燕'
『柒』 Mysql 資料庫的事件和存儲過程的問題
我給你舉個例子吧!
MySQL存儲過程例子,包含事務,參數,嵌套調用,游標,循環等,閱讀MySQL存儲過程例子,包含事務,參 數,嵌套調用,游標,循環等,view plain to clipboardprint?drop procere if exists pro_rep_shadow_rs; delimiter | -------------------------------
view plain to clipboardprint?
drop procere if exists pro_rep_shadow_rs;
delimiter |
----------------------------------
-- rep_shadow_rs
-- 用來處理信息的增加,更新和刪除
-- 每次只更新上次以來沒有做過的數據
-- 根據不同的標志位
-- 需要一個輸出的參數,
-- 如果返回為0,則調用失敗,事務回滾
-- 如果返回為1,調用成功,事務提交
--
-- 測試方法
-- call pro_rep_shadow_rs(@rtn);
-- select @rtn;
----------------------------------
create procere 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 procere if exists pro_rep_shadow_rs_do;
delimiter |
---------------------------------
-- 處理指定編號范圍內的數據
-- 需要輸入2個參數
-- last_rep_sync_id 是編號的最小值
-- max_rep_sync_id 是編號的最大值
-- 無返回值
---------------------------------
create procere 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;
|
『捌』 mysql 存儲過程嵌套循環 第一次內循環能插入數據,之後不能成功插入數據,求解!!
1. 首先你應該看下循環條件是否已經走完,
2. 其次看所插數據是否滿足表中的欄位格式,再然後,看看SQL有沒有明顯的錯誤。
3. 如果檢查完還沒好,麻煩把SQL發我,我看下。
『玖』 mysql 存儲過程可以嵌套調用嗎
當然可以,也可以調用其他的函數或者自定義函數,當要看你MYSQL的版本哦