Hey all,
I don't even know if this is possible, but I am hoping it is. What I need to do is, from an SQL insert multiple records, but I don't know how many?.
Essentially if I was doing this one at a time, I would do...
INSERT INTO T_CollectionMembers (UID, MemberUID) VALUES (?, 99999)
I can get what the ? mark is From...
SELECT UID FROM T_Collections
But what I want to do is build an SQL where it will insert 1 Collecion Member Record, for each number of collections.
Any thoughts?
Casper
There is room for all of gods creatures, "Right Beside the Mashed Potatoes".
I don't even know if this is possible, but I am hoping it is. What I need to do is, from an SQL insert multiple records, but I don't know how many?.
Essentially if I was doing this one at a time, I would do...
INSERT INTO T_CollectionMembers (UID, MemberUID) VALUES (?, 99999)
I can get what the ? mark is From...
SELECT UID FROM T_Collections
But what I want to do is build an SQL where it will insert 1 Collecion Member Record, for each number of collections.
Any thoughts?
Casper
There is room for all of gods creatures, "Right Beside the Mashed Potatoes".