时间:2023-10-29来源:系统城装机大师作者:佚名
游标是用来存储查询结果集的数据类型,在存储过程和函数中可以使用游标对结果集进行循环的处理。
游标的使用包括游标的声明、open、fetch和close。
1 2 3 4 5 6 7 8 |
#声明游标 declare 游标名称 cursor for 查询语句; #开启游标 open 游标名称; #获取游标记录 fetch 游标名称 into 变量[,变量]; #关闭游标 close 游标名称; |
根据传入的参数uage,来查询用户表tb_user中,所有的用户年龄小于等于uage的用户姓名name和专业profession,并将用户的姓名和专业插入到所创建的一张新表id,name,profession中。
逻辑
#A.声明游标,存储查询结果集
#B.创建表结构
#C.开启游标
#D.获取游标记录
#E.插入数据到新表中
#F.关闭游标
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
#创建一个存储过程 create procedure p11( in uage int ) begin declare uname varchar (100);#声明变量 declary upro varchar (100);#声明变量 #声明游标记录符合条件的结果集 declare u_cursor cursor for select name ,profession from tb_user where age <= uage; drop table if exists tb_user_pro; #tb_user_pro表如果存在,就删除。 create table if exists tb_user_pro( #if exists代表表存在就删除了再创建表 id int primary key auto_increment, name varchar (100), profession varchar (100) ); open u_cursor;#开启游标 #while循环获取游标当中的数据 while true do fetch u_cursor into uname,upro;#获取游标中的记录 insert into tb_user_pro values ( null ,uname,upro);#将获取到的数据插入表结构中 end while; close u_cursor;#关闭游标 end ; #查询年龄小于30 call p11(30); |
条件处理程序handler可以用来定义在流程控制结构执行过程中遇到问题时相应的处理步骤。
1、语法
1 | declare handler_action handler for condition_value [,condition_value]... statement; |
handler_action
condition_value
2、解决报错
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
#创建一个存储过程 create procedure p11( in uage int ) begin declare uname varchar (100);#声明变量 declary upro varchar (100);#声明变量 #声明游标记录符合条件的结果集 declare u_cursor cursor for select name ,profession from tb_user where age <= uage; #声明一个条件处理程序,当满足SQL状态码为02000的时候,触发退出操作,退出的时候将游标关闭 declare exit handler for SQLSTATE '02000' close u_cursorl; #声明一个条件处理程序,当满足SQL状态码为02000的时候,触发退出操作,退出的时候将游标关闭 declare exit handler for not found close u_cursorl; drop table if exists tb_user_pro; #tb_user_pro表如果存在,就删除。 create table if exists tb_user_pro( #if exists代表表存在就删除了再创建表 id int primary key auto_increment, name varchar (100), profession varchar (100) ); open u_cursor;#开启游标 #while循环获取游标当中的数据 while true do fetch u_cursor into uname,upro;#获取游标中的记录 insert into tb_user_pro values ( null ,uname,upro);#将获取到的数据插入表结构中 end while; close u_cursor;#关闭游标 end ; #查询年龄小于30 call p11(30); |
1、游标
游标是一个存储在MySQL服务器上的数据库查询,它不是一条select语句,而是被该语句所检索出来的结果集。
2、定义游标
这个过程并没有检索到数据,只是定义要使用的select语句
1 | DECLARE t_cursor CURSOR FOR SELECT t.id FROM t_dept t; |
3、如果没有数据返回或者select出现异常,程序继续,并将变量done设为true
1 | DECLARE CONTINUE HANDLER FOR NOT FOUND SET done= true ; |
4、打开游标
1 | open t_cursor; |
5、使用游标
使用fetch来取出数据
1 | fetch t_cursor in variable; |
6、关闭游标
1 | close t_cursor; |
过程:定义游标(使用游标前必须先定义游标)—》打开游标—》关闭游标
2023-10-30
windows上的mysql服务突然消失提示10061 Unkonwn error问题及解决方案2023-10-30
MySQL非常重要的日志bin log详解2023-10-30
详解MySQL事务日志redo log一、单表查询 1、排序 2、聚合函数 3、分组 4、limit 二、SQL约束 1、主键约束 2、非空约束 3、唯一约束 4、外键约束 5、默认值 三、多表查询 1、内连接 1)隐式内连接: 2)显式内连接: 2、外连接 1)左外连接 2)右外连接 四...
2023-10-30
Mysql删除表重复数据 表里存在唯一主键 没有主键时删除重复数据 Mysql删除表中重复数据并保留一条 准备一张表 用的是mysql8 大家自行更改 创建表并添加四条相同的数据...
2023-10-30