Wenn ich das richtig verstehe, brauchen Sie nur CROSS JOIN
. Versuchen Sie es
INSERT INTO bullets (product_code, bullet_text)
SELECT m.product_code, b.bullet_text
FROM bullets b CROSS JOIN master m
WHERE b.product_code = 10001
AND m.product_group = 3
AND m.product_code <> 10001;
Hier ist SQLFiddle Demo.
Jetzt können Sie es in eine gespeicherte Prozedur einpacken, wenn Sie zu
gegangen sindCREATE PROCEDURE copy_bullets_test (IN product_code_from INT, IN product_group_to INT)
INSERT INTO bullets (product_code, bullet_text)
SELECT m.product_code, b.bullet_text
FROM bullets b CROSS JOIN master m
WHERE b.product_code = product_code_from
AND m.product_group = product_group_to
AND m.product_code <> product_code_from;
Und verwenden Sie es
CALL copy_bullets_test(10001, 3);
Hier ist SQLFiddle Demo für diesen Fall.