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的版本哦