ice78991
Programmer
- Nov 20, 2006
- 216
I have a function called get_bikes which creates and returns a table of BikeIDs in a column called bike
In my stored procedure, I want to insert this data into a new table called BikeOwners with 2 columns OwnerID and BikeID
In my stored procedure I have tried things like
INSERT INTO BikeOwners
(OwnerID,
BikeID)
VALUES
(@Owner,
SELECT bike from getbikes(DEFAULT))
But it's not working. What should I be doing ?
In my stored procedure, I want to insert this data into a new table called BikeOwners with 2 columns OwnerID and BikeID
In my stored procedure I have tried things like
INSERT INTO BikeOwners
(OwnerID,
BikeID)
VALUES
(@Owner,
SELECT bike from getbikes(DEFAULT))
But it's not working. What should I be doing ?