zoukankan      html  css  js  c++  java
  • MySQL Cursor

    MySQL Cursor

    Summary: in this tutorial, you will learn how to use MySQL cursor in stored procedures to iterate through a result set returned by a SELECT statement.

    Introduction to MySQL cursor

    To handle a result set inside a stored procedure, you use a cursor. A cursor allows you to iterate a set of rows returned by a query and process each row accordingly.

    MySQL cursor is read-only, non-scrollable and asensitive.

    • Read only: you cannot update data in the underlying table through the cursor.
    • Non-scrollable: you can only fetch rows in the order determined by the SELECT statement. You cannot fetch rows in the reversed order. In addition, you cannot skip rows or jump to a specific row in the result set.
    • Asensitive: there are two kinds of cursors: asensitive cursor and insensitive cursor. An asensitive cursor points to the actual data, whereas an insensitive cursor uses a temporary copy of the data. An asensitive cursor performs faster than an insensitive cursor because it does not have to make a temporary copy of data. However, any change that made to the data from other connections will affect the data that is being used by an asensitive cursor, therefore, it is safer if you don’t update the data that is being used by an asensitive cursor. MySQL cursor is asensitive.

    You can use MySQL cursors in stored proceduresstored functions, and triggers.

    Working with MySQL cursor

    First, you have to declare a cursor by using the DECLARE statement:

    The cursor declaration must be after any variable declaration. If you declare a cursor before variables declaration, MySQL will issue an error. A cursor must always be associated with aSELECT statement.

    Next, you open the cursor by using the OPEN statement. The OPEN statement initializes the result set for the cursor, therefore, you must call the OPEN statement before fetching rows from the result set.

    Then, you use the FETCH statement to retrieve the next row pointed by the cursor and move the cursor to the next row in the result set.

    After that, you can check to see if there is any row available before fetching it.

    Finally, you call the CLOSE statement to deactivate the cursor and release the memory associated with it as follows:

    When the cursor is no longer used, you should close it.

    When working with MySQL cursor, you must also declare a NOT FOUND handler to handle the situation when the cursor could not find any row. Because each time you call the FETCHstatement, the cursor attempts to read the next row in the result set. When the cursor reaches the end of the result set, it will not be able to get the data, and a condition is raised. The handler is used to handle this condition.

    To declare a NOT FOUND handler, you use the following syntax:

    Where finished is a variable to indicate that the cursor has reached the end of the result set. Notice that the handler declaration must appear after variable and cursor declaration inside the stored procedures.

    The following diagram illustrates how MySQL cursor works.

    MySQL Cursor Steps

    MySQL Cursor Example

    We are going to develop a stored procedure that builds an email list of all employees in theemployees table in the MySQL sample database.

    First, we declare some variables, a cursor for looping over the emails of employees, and a NOT FOUND handler:

    Next, we open the email_cursor by using the OPEN statement:

    Then, we iterate the email list, and concatenate all emails where each email is separated by a semicolon(;):

    After that, inside the loop we used the v_finished variable to check if there is any email in the list to terminate the loop.

    Finally, we close the cursor using the CLOSE statement:

    The build_email_list stored procedure is as follows:

    You can test the  build_email_list stored procedure using the following script:

    In this tutorial, we have shown you how to use MySQL cursor to iterate a result set and process each row accordingly.

  • 相关阅读:
    火山喷发 计蒜客16862 NOIP模拟赛 概率DP
    洛谷 1429 平面最近点对(加强版) 快排 非点分治或kdtree
    鬼脚图 计蒜客17353 NOIP模拟 归并排序逆序对
    小X的佛光 NOIP模拟赛 倍增LCA 树结构
    小X的质数 NOIP模拟赛 魔改线性筛素数
    Win7Office2010Flash控件无法使用"此演示文稿中一些控件无法激活,可能这些控件未在此计算机中注册"
    【NOILinux】VmWare15使用技巧
    【超链接】导航网站
    C++统计博客园写过的代码行数
    合并多个txt文件到一个
  • 原文地址:https://www.cnblogs.com/kungfupanda/p/5874184.html
Copyright © 2011-2022 走看看