我在一个过程中使用以下 sql:
READ_LOOP: LOOP
FETCH CUR INTO xStatus;
IF done THEN LEAVE READ_LOOP;
END IF;
set i = i+1;
if i mod 3 = 0 then
SET DescrStatus = CONCAT(DescrStatus, xStatus, ' | ', CHAR(13));
else if i = 1 then
SET DescrStatus = CONCAT(xStatus, ' | ');
else SET DescrStatus = CONCAT(DescrStatus, xStatus, ' | '); end if;
end if;
END LOOP READ_LOOP;
我想知道循环的最后位置。