当前位置:网站首页>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 :
边栏推荐
猜你喜欢

IO模型复习

【acwing】786. Number k

Programming features of ISP, IAP, ICP, JTAG and SWD

LLVM之父Chris Lattner:为什么我们要重建AI基础设施软件

ArcGIS operation: batch modify attribute table

HAL库配置通用定时器TIM触发ADC采样,然后DMA搬运到内存空间。

【二开】【JeecgBoot】修改分页参数

STM32 Basics - memory mapping

The landing practice of ByteDance kitex in SEMA e-commerce scene

STM32中AHB总线_APB2总线_APB1总线这些是什么
随机推荐
@Transcation的配置,使用,原理注意事项:
request对象对请求体,请求头参数的解析
Postman interface test VI
C logging method
In addition to the objective reasons for overtime, what else is worth thinking about?
Parameter sniffing (1/2)
学习记录——高精度加法和乘法
串口通讯继电器-modbus通信上位机调试软件工具项目开发案例
Chris LATTNER, the father of llvm: why should we rebuild AI infrastructure software
Fiddler simulates the interface test
ISP、IAP、ICP、JTAG、SWD的编程特点
[learning notes - Li Hongyi] Gan (generation of confrontation network) full series (I)
Easyexcel read write simple to use
Methods of adding centerlines and centerlines in SolidWorks drawings
The landing practice of ByteDance kitex in SEMA e-commerce scene
2022.7.4DAY596
AHB bus in stm32_ Apb2 bus_ Apb1 bus what are these
.NET配置系统
Appx code signing Guide
ORM--逻辑关系与&或;排序操作,更新记录操作,删除记录操作