Hi i have a table called products that when in the ASP if a condition is met, i need to insert into the product table new records from vendorID=305 from the product table. so basically i'm inserting new reords that are identical to records that already exist in the table but just setting the VendorID to a new id. This is what i have which doesn't seem to work: i'm trying to insert all records for vendorID=305 into the product table with vendorID equal to 304. Any suggestions
INSERT INTO Product
(VendorID
,ProductName
,ProductDescription)
VALUES
(304, (Select
,ProductName as ProductName
,ProductDescription as ProductDescription
From Product where vendorID=305))
INSERT INTO Product
(VendorID
,ProductName
,ProductDescription)
VALUES
(304, (Select
,ProductName as ProductName
,ProductDescription as ProductDescription
From Product where vendorID=305))