I want to grab all rows from table items where id > 100
SELECT `id` FROM `items` WHERE `id` > 100
And for each of these rows returned from above select, insert a new row into the item_tags table;
INSERT INTO `item_tags` (`item_id`, `tag_id`) VALUES (107, 123)
INSERT INTO `item_tags` (`item_id`, `tag_id`) VALUES (114, 123)
.
.
.
INSERT INTO `item_tags` (`item_id`, `tag_id`) VALUES (299, 123)
Can I do this in a single query in MySQL?