Using SQL server is it possible to to a mass insert based on a sub query, Essentially I'm trying to do this.
Insert into ProductExtra (ProductID,ExtraID)
VALUES
(Select ProductID From ProductSKU
JOIN Product on ProductSKU.ProductID = Product.ID
Where ItemType = 'fire grate' ), 10739