mysql游标的用法及作用_Mysql 游标的用法及其作用

mysql 游标的用法和作用,话不多说,这个是网上看到的例子,简答粗暴。

例子:

当前有三张表a、b、c其中a和b是一对多关系,b和c是一对多关系,现在需要将b中a表的主键存到c中;

常规思路就是将b中查询出来然后通过一个update语句来更新c表就可以了,但是b表中有2000多条数据,

难道要执行2000多次?显然是不现实的;最终找到写一个存储过程然后通过循环来更新c表,

然而存储过程中的写法用的就是游标的形式。

简介

游标实际上是一种能从包括多条数据记录的结果集中每次提取一条记录的机制。

游标充当指针的作用。(有'C'的味道了)

尽管游标能遍历结果中的所有行,但他一次只指向一行。

游标的作用就是用于对查询数据库所返回的记录进行遍历,以便进行相应的操作。

用法

一、声明一个游标: declare 游标名称 CURSOR for table;(这里的table可以是你查询出来的任意集合)

二、打开定义的游标:open 游标名称;

三、获得下一行数据:FETCH 游标名称 into testrangeid,versionid;

四、需要执行的语句(增删 改查):这里视具体情况而定

五、释放游标:CLOSE 游标名称;

实例

-

BEGIN

--定义变量

declare testrangeid BIGINT;

declare versionid BIGINT;

declare done int;

--创建游标,并存储数据

declare cur_test CURSOR for

select id as testrangeid,version_id as versionid from tp_testrange;

--游标中的内容执行完后将done设置为1

DECLARE CONTINUE HANDLER FOR NOT FOUND SET done=1;

--打开游标

open cur_test;

--执行循环

posLoop:LOOP

--判断是否结束循环

IF done=1 THEN

LEAVE posLoop;

END IF;

--取游标中的值

FETCH cur_test into testrangeid,versionid;

--执行更新操作

update tp_data_execute set version_id=versionid where testrange_id = testrangeid;

END LOOP posLoop;

--释放游标

CLOSE cur_test;

END

-

例子2:

--在windows系统中写存储过程时,如果需要使用declare声明变量,需要添加这个关键字,否则会报错。

delimiter //

drop procedure if exists StatisticStore;

CREATE PROCEDURE StatisticStore()

BEGIN

--创建接收游标数据的变量

declare c int;

declare n varchar(20);

--创建总数变量

declare total int default 0;

--创建结束标志变量

declare done int default false;

--创建游标

declare cur cursor for select name,count from store where name = 'iphone';

--指定游标循环结束时的返回值

declare continue HANDLER for not found set done = true;

--设置初始值

set total = 0;

--打开游标

open cur;

--开始循环游标里的数据

read_loop:loop

--根据游标当前指向的一条数据

fetch cur into n,c;

--判断游标的循环是否结束

if done then

leave read_loop; --跳出游标循环

end if;

--获取一条数据时,将count值进行累加操作,这里可以做任意你想做的操作,

set total = total + c;

--结束游标循环

end loop;

--关闭游标

close cur;

--输出结果

select total;

END;

--调用存储过程

call StatisticStore();

fetch是获取游标当前指向的数据行,并将指针指向下一行,当游标已经指向最后一行时继续执行会造成游标溢出。

使用loop循环游标时,他本身是不会监控是否到最后一条数据了,像下面代码这种写法,就会造成死循环;

read_loop:loop

fetch cur into n,c;

set total = total+c;

end loop;

在MySql中,造成游标溢出时会引发mysql预定义的NOT FOUND错误,所以在上面使用下面的代码指定了当引发not found错误时定义一个continue 的事件,

指定这个事件发生时修改done变量的值。

declare continue HANDLER for not found set done = true;

--判断游标的循环是否结束

if done then

leave read_loop; --跳出游标循环

end if;

如果done的值是true,就结束循环。继续执行下面的代码

使用方式

第一种就是上面的实现,使用loop循环;

第二种方式如下,使用while循环:

drop procedure if exists StatisticStore1;

CREATE PROCEDURE StatisticStore1()

BEGIN

declare c int;

declare n varchar(20);

declare total int default 0;

declare done int default false;

declare cur cursor for select name,count from store where name = 'iphone';

declare continue HANDLER for not found set done = true;

set total = 0;

open cur;

fetch cur into n,c;

while(not done) do

set total = total + c;

fetch cur into n,c;

end while;

close cur;

select total;

END;

call StatisticStore1();

第三种方式是使用repeat执行:

drop procedure if exists StatisticStore2;

CREATE PROCEDURE StatisticStore2()

BEGIN

declare c int;

declare n varchar(20);

declare total int default 0;

declare done int default false;

declare cur cursor for select name,count from store where name = 'iphone';

declare continue HANDLER for not found set done = true;

set total = 0;

open cur;

repeat

fetch cur into n,c;

if not done then

set total = total + c;

end if;

until done end repeat;

close cur;

select total;

END;

call StatisticStore2();

游标嵌套

在mysql中,每个begin end 块都是一个独立的scope区域,由于MySql中同一个error的事件只能定义一次,如果多定义的话在编译时会提示Duplicate handler declared in the same block。

drop procedure if exists StatisticStore3;

CREATE PROCEDURE StatisticStore3()

BEGIN

declare _n varchar(20);

declare done int default false;

declare cur cursor for select name from store group by name;

declare continue HANDLER for not found set done = true;

open cur;

read_loop:loop

fetch cur into _n;

if done then

leave read_loop;

end if;

begin

declare c int;

declare n varchar(20);

declare total int default 0;

declare done int default false;

declare cur cursor for select name,count from store where name = 'iphone';

declare continue HANDLER for not found set done = true;

set total = 0;

open cur;

iphone_loop:loop

fetch cur into n,c;

if done then

leave iphone_loop;

end if;

set total = total + c;

end loop;

close cur;

select _n,n,total;

end;

begin

declare c int;

declare n varchar(20);

declare total int default 0;

declare done int default false;

declare cur cursor for select name,count from store where name = 'android';

declare continue HANDLER for not found set done = true;

set total = 0;

open cur;

android_loop:loop

fetch cur into n,c;

if done then

leave android_loop;

end if;

set total = total + c;

end loop;

close cur;

select _n,n,total;

end;

begin

end;

end loop;

close cur;

END;

call StatisticStore3();

动态SQL

Mysql 支持动态SQL的功能

set @sqlStr='select * from table where condition1 = ?';

prepare s1 for @sqlStr;

--如果有多个参数用逗号分隔

execute s1 using @condition1;

--手工释放,或者是 connection 关闭时, server 自动回收

deallocate prepare s1;

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/557219.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

@ControllerAdvice实现优雅地处理异常

ControllerAdvice,是Spring3.2提供的新注解,它是一个Controller增强器,可对controller中被 RequestMapping注解的方法加一些逻辑处理。最常用的就是异常处理 统一异常处理 需要配合ExceptionHandler使用。 当将异常抛到controller时,可以对异常进行统一处理,规定返…

python django图书管理系统_Python框架:Django写图书管理系统(LMS)

Django模版文件配置文件路径 test_site -- test_site -- settings.pyTEMPLATES [ { BACKEND: django.template.backends.django.DjangoTemplates, DIRS: [os.path.join(BASE_DIR, "template")], # template文件夹位置 APP_DIRS: True, OPTIONS: { context_processor…

springsecurity中session失效后怎样处理_结合Spring Security进行web应用会话安全管理

结合Spring Security进行web应用会话安全管理在本文中,将为大家说明如何结合Spring Security 管理web应用的会话。如果您阅读后觉得本文对您有帮助,期待您能关注、转发!您的支持是我不竭的创作动力!一、Spring Security创建使用se…

如何把数据库从sql变成mysql_如何将数据库从SQL Server迁移到MySQL

一、迁移Database Schema。首先使用Sybase Powerdesigner的逆向工程功能,逆向出SQL Server数据库的物理模型。具体操作是在Powerdesigner中选择“File”,“Reverse Engine”再选择Database,将DBMS选择为SQL Server,如图&#xff1…

mysql查询单词出现的位置_在MySQL中从左侧获取一些单词

为此,请在MySQL中使用LEFT。让我们首先创建一个表-mysql> create table DemoTable-> (-> Title text-> );使用插入命令在表中插入一些记录-mysql> insert into DemoTable values(Java database connectivity to MySQL database);mysql> insert in…

linux转mysql_[转] linux下安装mysql服务器

[转自:http://www.extmail.org/forum/archive/2/0510/563.html]安装MySQL服务器你可以根据服务器的CPU类型,下载适合你所用CPU和操作系统的MySQL发行包。从下面的URL下载MySQL 4.1.16以tar.gz形式发布的二进制发行包:http://www.mysql.com增加…

mysql数据库开发要求_MYSQL数据库开发规范

MYSQL数据库开发规范(一) 建表规约1.【推荐】表达是与否概念的字段,必须使用 is_xxx 的方式命名,数据类型是 unsigned tinyint ( 1 表示是,0 表示否)。说明:任何字段如果为非负数,必须是 unsigned。正例:表…

HTTP 学习,程序员不懂网络怎么行,一篇HTTP入门 不收藏都可惜

文章目录📢前言HTTP 必备干货学习,程序员不懂网络怎么行HTTP 协议五个特点:网络结构图解HTTP概述🏳️‍🌈基于 HTTP 的系统的组件客户端:用户代理网络服务器代理HTTP 的基本方面HTTP 很简单HTTP 是可扩展的…

docker mysql5.7 主从_docker-compose mysql5.7.30 主从

一、安装mysql5.7.30主库1.准备docker和docker-compose环境2.创建yml目录,相关数据挂载#yml存放的目录mkdir -p /root/docker-compse/mysql#主库的/var/lib/mysql 数据的挂载目录mkdir -p /data/mysql5matser#不用slave 了,用replication的缩写replic , …

Java面试——Redis系列总结

文章目录: 1.什么是Redis? 2.为什么要用 Redis / 为什么要用缓存? 3.Redis为什么这么快? 4.Redis都有哪些数据类型? 5.什么是Redis持久化?Redis 的持久化有哪些实现方式? 6.什么是Redis事…

使用ping时遇到 Time to live exceeded

环境:Ubuntu服务器,带有两块物理网卡,分别连接两个局域网,所处网络环境复杂。 网卡1地址为192.168.5.100 网卡2地址为10.172.172.100 网卡1的路由为默认路由,网关为192.168.5.254 网卡2路由到网关10.172.150.254&a…

python 手机编程termux_如何优雅的在手机上进行Python编程?

其实谈不上优雅,编程还是老老实实在电脑编程更实用,手机只是某种程度上做一些便捷性的操作。回到主题,下面介绍两个常用的Python编程工具。第一款:TermuxTermux是一个安卓手机的 Linux 模拟器,可以在手机上模拟 Linux …

python打飞机源码_python 飞机大战 游戏源码(pygame入门级)

l文件 35644 2018-09-21 12:27 飞机大战03\.idea\workspace.xml文件 398 2018-09-19 09:42 飞机大战03\.idea\飞机大战.iml文件 5082 2018-09-21 11:23 飞机大战03\bin\planefight.py文件 0 2018-09-19 09:34 飞机大战03\bin\__init__.py文…

java运行环境_Windows系统java运行环境配置 | 吴文辉博客

在进行java开发之前,我们最重要的步骤就是如何获取JDK版本及正确的安装、配置java环境。只有正确的安装了java运行环境,才能继续java的学习和实践。一、下载JDK安装1、我系统是win7 64位,所以我下载了jdk-8u74-windows-x64;下载地…

鉴权必须了解的5个知识点:cookie,session,token,jwt,单点登录

从状态说起 [HTTP 无状态] 我们知道,HTTP是无状态的,也就是说,HTTP请求方和响应方间无法维护状态,都是一次性的,它不知道前后的请求都发生了什么 但有的场景下,我们需要维护状态,最常见的&am…

一个java类可以有_一个.java文件中可以有几个同级类?

1、在一个.java文件中可以有多个同级类(和public一样的位置,注意不是内部类).其修饰符只可以public/abstract/final/和无修饰符,不能是其他的protected/private等修饰符。所以protected类虽然可以在包内访问&#xff0…

java中的关键字有哪些_Java关键字有哪些?

Abstract 抽象的一个Java语言中的关键字,用在类的声明中来指明一个类是不能被实例化的,但是可以被其它类继承。一个抽象类可以使用抽象方法,抽象方法不需要实现,但是需要在子类中被实现break一个Java的关键字,用来改变…

如何实现session共享的几种解决方案?

先了解一下为什么会出现这种session共享的解决方案? 随着互联网公司的项目在微服务和分布式的环境下进行的搭建,导致一个项目可能分别部署在几个甚至很多的服务器集群下,此时就会出现一个问题当用户进行一个session会话的时候,比…

java类继承语法_java类的继承(基础)

---恢复内容开始---这篇随笔和大家讲讲java中类的继承是什么?希望对你们有所帮助。目录一、java继承是什么?二、为什么使用java继承三、java继承的实现1.1 java继承的基本语法1.2 super的用法一、Java继承是什么?简单来讲,Java中…

JSON中的JSON.parseArray()方法、JSON.parseObject()方法和JSON.tojsonString()方法

1、JSON.JSON.parseObject和JSON.toJSONString JSON.parseObject,是将Json字符串转化为相应的对象;JSON.toJSONString则是将对象转化为Json字符串。在前后台的传输过程中,JSON字符串是相当常用的,这里就不多介绍其功能了&#xff…