You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Karl Levik edited this page Mar 7, 2022
·
1 revision
Populate the container registry with two series of barcodes
DELIMITER ;;
FOR i IN1..20
DO
INSERT INTO ContainerRegistry (barcode) VALUES (concat('MX_', LPAD(i, 4, 0)));
END FOR;;
FOR i IN1001..1040
DO
INSERT INTO ContainerRegistry (barcode) VALUES (concat('MX_', i));
END FOR;;
DELIMITER ;