mysql之游标
游标
mysql> delimiter //
mysql> create procedure duhuo()
-> begin
-> declare ordnums cursor
-> for
-> select order_num from orders;
-> end
-> //
OPEN ordnums;
close ordnums;
mysql> delimiter //
mysql> create procedure duhuo1()
-> begin
-> declare dudu cursor
-> for
-> select order_num from orders;
-> open dudu;
-> close dudu;
-> end
-> //
mysql> delimiter //
mysql> create procedure demo0()
-> begin
-> declare tx int;
-> declare du1 cursor
-> for
-> select order_num from orders;
-> open du1;
-> fetch du1 into tx;
-> close du1;
-> end
-> //
Query OK, 0 rows affected (0.02 sec)
mysql> create procedure demo0()
-> begin
-> delcare done boolean default 0;
-> declare du int;
-> declare ordernu cursor
-> for
-> select order_num from orders;
-> declare continue handler for sqlstate '' set done = 1;
-> open ordernu;
-> repeat
-> fetch ordernu into du;
-> until done end repeat;
-> close ordernu;
-> end//
declare continue handler for sqlstate '' set done = 1;
mysql> delimiter //
mysql> create procedure liwei()
-> begin
-> declare done boolean default 0;
-> declare li int;
-> declare wei decimal(8,2);
-> declare numb cursor
-> for
-> select order_num from orders;
-> declare continue handler for sqlstate '' set done=1;
-> create table if not exists ordertotals
-> (order_num int,total decimal(8,2));
-> open numb;
-> repeat
-> fetch ordernumbers into li;
-> call ordertotals(tx,1,t);
-> insert into ordertotals(order_num, total)
-> values(li,wei);
-> until done end repeat;
-> close numd;
-> end
-> //
call liwei();
select *
from ordertotals;
+----------------+--------------+
| order_num | total |
+----------------+--------------+
| 20005 | 158.56 |
| 20006 | 25.78 |
| 20007 | 1068.00 |
+----------------+--------------+
mysql之游标的更多相关文章
- MySQL中游标使用以及读取文本数据
原文:MySQL中游标使用以及读取文本数据 前言 之前一直没有接触数据库的学习,只是本科时候修了一本数据库基本知识的课.当时只对C++感兴趣,天真的认为其它的课都没有用,数据库也是半懂不懂,胡乱就考试 ...
- MySQL存储过程 游标
MySQL存储过程 游标 如何在存储过程中使用MySQL游标来遍历SELECT语句返回的结果集 MySQL游标简介 要处理存储过程中的结果集,请使用游标.游标允许您迭代查询返回的一组行,并相应地处理 ...
- Mysql 视图 游标 触发器 存储过程 事务
Mysql 视图 触发器 存储过程 游标 游标是从数据表中提取出来的数据,以临时表的形式存放在内存中,在游标中有一个数据指针,在初始状态下指向的是首记录,利用fetch语句可以移动该指针,从而对游标中 ...
- MySql使用游标Cursor循环(While)更新数据
#要修改的变量 DECLARE var_ID VARCHAR(50) DEFAULT ''; #需要修改的数据的数量 DECLARE var_UpdateCount INT; #当前循环次数 DECL ...
- MySql 中游标,事务,终止存储过程方法总结
最近在项目开发中,有段逻辑处理,需要在网站,app,后台分别运行,这样给后期的维护带来了很大的不方便,容易遗漏app端或者后台,所以讲java代码转换成存储过程,把逻辑处理写在了mysql端,其中遇到 ...
- 用 Navicat 写mysql的游标
千言万语也比不上一个简单直接明了的小例子: CREATE PROCEDURE pro_users() begin DECLARE myid int; DECLARE no int; ); ); ); ...
- 【MySQL】游标的具体使用详解
测试表 level ; )); 再 insert 些数据 ;代码,初始化 drop procedure if exists useCursor // 建立 存储过程 create CREATE PRO ...
- MySql命令——游标
1.游标的概念 有时,需要在检索出来的行中前进或后退一行或多行.这就是使用游标的原因.游标(cursor)是一个存储在 MySql 服务器上的数据库查询,它不是一条 select 语句,而是被该语句检 ...
- mysql 简单游标
<=====================MYSQL 游标示例=====================> CREATE PROCEDURE `test`.`new_procedure` ...
随机推荐
- hdu 2425 Hiking Trip
题目连接 http://acm.hdu.edu.cn/showproblem.php?pid=2425 Hiking Trip Description Hiking in the mountains ...
- linux eclipse
方法一: 此外,众所周知,Eclipse是Java程序,因此很容易就实现了跨平台,也是众所周知,Java的大型程序非常吃内存,即使有512MB内存, 仍然感觉Eclipse的启动速度很慢.个人认为1G ...
- Spark 3000门徒第一课随笔
昨晚听了王家林老师的Spark 3000门徒系列课程的第一课,把scala基础过了一遍,对ArrayBuffer有了新的认识: Array本身创建后不可修改ArrayBuffer可修改import s ...
- ionic+cordova+angularJs
ionic+cordova+angularJs 这里详细介绍下如何用ionic+cordova+angularjs搭建自己的移动端app,包括环境搭建,框架使用等,具体项目已放置在github上,可下 ...
- 快速排序QuickSort
前几天实现了直接插入排序.冒泡排序和直接选择排序这三个基础排序.今天看了一下冒泡排序的改进算法,快速排序.单独记录一下,后面还有归并和基数排序等 快速排序 1.选择一个支点默认为数组第一个元素及arr ...
- Google Volley: How to send a POST request with Json data?
sonObjectRequest actuallyaccepts JSONObject as body. From http://arnab.ch/blog/2013/08/asynchronous- ...
- C#新语法特性前瞻
今天逛微软的UserVoice site发现了几个有很有用,也很可能被添加到新版C#中的语法,当然也可能被推迟到下一版,拿出来给大家分享一下. 另外还没投票的可以去为自己最想要的新特性投票,有兴趣的可 ...
- IOC框架的认识
转:http://blog.csdn.net/wanghao72214/article/details/3969594 1 IoC理论的背景 我们都知道,在采用面向对象方法设计的软件系统中,它的底层实 ...
- JAVA开发CHECK STYLE
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE module PUBLIC "-/ ...
- Hibernate中启用日志
Problem How do you determine what SQL query is being executed by Hibernate? How can you see the Hibe ...