drop table if exists t1; create table t1( id int(11) NOT NULL, c1 int(11) DEFAULT NULL, c2 int(11) DEFAULT NULL, PRIMARY KEY(id), KEY idx_c1c2(c1, c2) )ENGINE=XENGINE DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; Warnings: Warning 1681 Integer display width is deprecated and will be removed in a future release. Warning 1681 Integer display width is deprecated and will be removed in a future release. Warning 1681 Integer display width is deprecated and will be removed in a future release. drop procedure if exists insert_data; CREATE PROCEDURE insert_data(start int, end int) BEGIN DECLARE i int DEFAULT 0; DECLARE a int DEFAULT 0; DECLARE b int DEFAULT 0; set i=start; WHILE i