mysql.cursors_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 iteratea 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 procedures, stored functions and triggers.

Working with MySQL cursor

First, you have to declare a cursor by using the DECLAREstatement:DECLARE cursor_name CURSOR FOR SELECT_statement;

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

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

Then, you use the FETCHstatement to retrieve the next row pointed by the cursor and move the cursor to the next row in the result set.FETCH cursor_name INTO variables list;

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

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

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 FETCH statement, 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:DECLARE CONTINUE HANDLER FOR NOT FOUND SET finished = 1;

Where finishedis 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.

AAffA0nNPuCLAAAAAElFTkSuQmCC

MySQL Cursor Example

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

First, we declare some variables, a cursor for looping over the emails of employees, and a NOT FOUND handler:DECLARE finished INTEGER DEFAULT 0; DECLARE email varchar(255) DEFAULT ""; -- declare cursor for employee email DEClARE email_cursor CURSOR FOR  SELECT email FROM employees; -- declare NOT FOUND handler DECLARE CONTINUE HANDLER  FOR NOT FOUND SET finished = 1;

Next, we open the email_cursorby using the OPENstatement:OPEN email_cursor;

Then, we iterate the email list, and concatenate all emails where each email is separated by a semicolon(;):get_email: LOOP FETCH email_cursor INTO v_email; IF v_finished = 1 THEN  LEAVE get_email; END IF; -- build email list SET email_list = CONCAT(v_email,";",email_list); END LOOP get_email;

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 CLOSEstatement:CLOSE email_cursor;

The build_email_liststored procedure is as follows:DELIMITER $$ CREATE PROCEDURE build_email_list (INOUT email_list varchar(4000)) BEGIN DECLARE v_finished INTEGER DEFAULT 0;         DECLARE v_email varchar(100) DEFAULT ""; -- declare cursor for employee email DEClARE email_cursor CURSOR FOR  SELECT email FROM employees; -- declare NOT FOUND handler DECLARE CONTINUE HANDLER          FOR NOT FOUND SET v_finished = 1; OPEN email_cursor; get_email: LOOP FETCH email_cursor INTO v_email; IF v_finished = 1 THEN  LEAVE get_email; END IF; -- build email list SET email_list = CONCAT(v_email,";",email_list); END LOOP get_email; CLOSE email_cursor; END$$ DELIMITER ;

You can test the build_email_list stored procedure using the following script:SET @email_list = ""; CALL build_email_list(@email_list); SELECT @email_list;

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

Related Tutorials

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值