码迷,mamicode.com
首页 > 数据库 > 详细

MySQL.CURSOR

时间:2015-06-10 13:47:58      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:

mysql> DELIMITER //
mysql> CREATE PROCEDURE processorders()
    -> BEGIN
    ->    -- Declare the cursor
    ->    DECLARE ordernumbers CURSOR
    ->    FOR
    ->    SELECT order_num FROM orders;
    -> 
    ->    -- Open the cursor
    ->    OPEN ordernumbers;
    ->  
    ->    -- Close the cursor
    ->    CLOSE ordernumbers;
    -> END//
Query OK, 0 rows affected (0.00 sec)

mysql> DELIMITER ;
mysql> CALL processorders();
Query OK, 0 rows affected (0.01 sec)

 

MySQL.CURSOR

标签:

原文地址:http://www.cnblogs.com/fatoland/p/4565720.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!