当前位置:网站首页>Use the fetch statement to obtain the repetition of the last row of cursor data
Use the fetch statement to obtain the repetition of the last row of cursor data
2022-07-07 10:22:00 【qq_ forty-two million one hundred and twenty thousand eight hun】
- Problem description :《MySQL Will know 》 Medium P179 After the execution of the stored procedure, a row is repeatedly inserted in the new table .
- stored procedure processorders( To calculate the orders The total amount of each order in the table and deposit in a new table )
# Create a stored procedure to calculate the total amount of each order and store it in a new table
DELIMITER //
CREATE PROCEDURE processorders()
BEGIN
# Declare local variables
DECLARE done BOOLEAN DEFAULT 0;
DECLARE o INT;
DECLARE t DECIMAL(8,2);
# declare cursor
DECLARE ordernumbers CURSOR
FOR
SELECT order_num FROM orders;
# Declare exception handling , When sql Status as 02000 when , take done Set to 1
DECLARE CONTINUE HANDLER FOR SQLSTATE '02000' SET done = 1;
# Create a new table to store the results
CREATE TABLE IF NOT EXISTS ordertotals
(order_num INT,
total DECIMAL(8,2)
);
# Open cursor
OPEN ordernumbers;
# Insert all rows in a loop
REPEAT
# Get the order number , When the intra row pointer points to the next row of the last row, executing this statement will make SQLSTATE='02000'
# Cause the execution of the upper handle processing to make done = 1
FETCH ordernumbers INTO o;
# Calculate the total amount with tax , The result will be returned to the parameter t, The stored procedure is at the bottom
CALL ordertotal(o,1,t);
# Insert the order number and total amount into the table
INSERT INTO ordertotals(order_num,total)
VALUES(o,t);
UNTIL done # The end cycle condition is done For the wrong 0
END REPEAT;
# Close cursor
CLOSE ordernumbers;
END//
# Execute query statement
CALL processorders()//
- The result
- Problem analysis : When the pointer in the cursor points to the next row of the last row , Re execution
FETCH ordernumbers INTO o;
When this statement , To take the current line and move the pointer down one line , Because the position pointed by the pointer is illegal , So there is a row error , Cause the upper handle processing to trigger , bring done = 1, And then o No new data is inserted , Or the old data of the last round ( That is, the order number in the last line ), Therefore, the last line is repeatedly inserted twice .
resolvent : stay FETCH Judge immediately after the statement is executed done Is it modified to 1, If it is modified to 1, Then the following insert code will not be executed . The stored procedure code above is modified to
DELIMITER //
CREATE PROCEDURE processorders()
BEGIN
# Declare local variables
DECLARE done BOOLEAN DEFAULT 0;
DECLARE o INT;
DECLARE t DECIMAL(8,2);
# declare cursor
DECLARE ordernumbers CURSOR
FOR
SELECT order_num FROM orders;
# Declare exception handling , When sql Status as 02000 when , take done Set to 1
DECLARE CONTINUE HANDLER FOR SQLSTATE '02000' SET done = 1;
# Create a new table to store the results
CREATE TABLE IF NOT EXISTS ordertotals
(order_num INT,
total DECIMAL(8,2)
);
# Open cursor
OPEN ordernumbers;
# Insert all rows in a loop
REPEAT
# Get the order number , When the intra row pointer points to the next row of the last row, executing this statement will make SQLSTATE='02000'
# Cause the execution of the upper handle processing to make done = 1
FETCH ordernumbers INTO o;
IF !done THEN # The key position of the correction
# Calculate the total amount with tax , The result will be returned to the parameter t, The stored procedure is at the bottom
CALL ordertotal(o,1,t);
# Insert the order number and total amount into the table
INSERT INTO ordertotals(order_num,total)
VALUES(o,t);
END IF;
UNTIL done
END REPEAT;
# Close cursor
CLOSE ordernumbers;
END//
Query again ordertotals The result of the table is
Reference material :
边栏推荐
- 【acwing】789. 数的范围(二分基础)
- STM32 product introduction
- The Hal library is configured with a general timer Tim to trigger ADC sampling, and then DMA is moved to the memory space.
- Postman interface test VI
- ES6中的原型对象
- Enterprise practice | construction of banking operation and maintenance index system under complex business relations
- ORM -- database addition, deletion, modification and query operation logic
- The Himalaya web version will pop up after each pause. It is recommended to download the client solution
- The landing practice of ByteDance kitex in SEMA e-commerce scene
- JMeter installation
猜你喜欢
The new activity of "the arrival of twelve constellations and goddesses" was launched
【HigherHRNet】 HigherHRNet 详解之 HigherHRNet的热图回归代码
虚数j的物理意义
【acwing】786. Number k
Web3.0 series distributed storage IPFs
The method of word automatically generating directory
STM32 ADC and DMA
【acwing】789. Range of numbers (binary basis)
SQLyog数据库怎么取消自动保存更改
ORM模型--数据记录的创建操作,查询操作
随机推荐
Remote meter reading, switching on and off operation command
ORM--逻辑关系与&或;排序操作,更新记录操作,删除记录操作
The landing practice of ByteDance kitex in SEMA e-commerce scene
【STM32】STM32烧录程序后SWD无法识别器件的问题解决方法
Deconvolution popular detailed analysis and nn Convtranspose2d important parameter interpretation
The story of Plato and his three disciples: how to find happiness? How to find the ideal partner?
Inno Setup 打包及签名指南
反射效率为什么低?
【二开】【JeecgBoot】修改分页参数
JMeter about setting thread group and time
Agile course training
IO模型复习
ORM模型--关联字段,抽象模型类
PDF文档签名指南
Can I open a stock trading account online? Is it safe
Leetcode exercise - 113 Path sum II
The Hal library is configured with a general timer Tim to trigger ADC sampling, and then DMA is moved to the memory space.
【华为机试真题详解】高矮个子排队
Inno setup packaging and signing Guide
SQLyog数据库怎么取消自动保存更改