📄 rpl_row_sp009.result
字号:
stop slave;drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;reset master;reset slave;drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;start slave;DROP PROCEDURE IF EXISTS test.p1;DROP TABLE IF EXISTS test.t1;DROP TABLE IF EXISTS test.t2;CREATE TABLE test.t1 (a INT, PRIMARY KEY(a));INSERT INTO test.t1 VALUES (1),(2),(3),(4);CREATE TABLE test.t2 (a INT, PRIMARY KEY(a));CREATE PROCEDURE test.p1 (arg1 CHAR(1))BEGINDECLARE b, c INT;IF arg1 = 'a' THENBEGINDECLARE cur1 CURSOR FOR SELECT A FROM test.t1 WHERE a % 2;DECLARE continue handler for not found set b = 1;SET b = 0;OPEN cur1;c1_repeat: REPEATFETCH cur1 INTO c;IF (b = 1) THENLEAVE c1_repeat;END IF;INSERT INTO test.t2 VALUES (c);UNTIL b = 1END REPEAT;CLOSE cur1;END;END IF;IF arg1 = 'b' THENBEGINDECLARE cur2 CURSOR FOR SELECT a FROM test.t1 WHERE NOT a % 2;DECLARE continue handler for not found set b = 1;SET b = 0;OPEN cur2;c2_repeat: REPEATFETCH cur2 INTO c;IF (b = 1) THENLEAVE c2_repeat;END IF;INSERT INTO test.t2 VALUES (c);UNTIL b = 1END REPEAT;CLOSE cur2;END;END IF;END|CALL test.p1('a');SELECT * FROM test.t2;a13SELECT * FROM test.t2;a13truncate test.t2;call test.p1('b');select * from test.t2;a24SELECT * FROM test.t2;a24truncate test.t2;SELECT * FROM test.t2;aSELECT * FROM test.t2;aDROP PROCEDURE test.p1;DROP TABLE test.t1;DROP TABLE test.t2;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -