Loop thru a SQL Table in stored proc? Hello,
Does anyone know of a way to loop thru a SQL table using code in a stored
procedure?
I need to go thru each record in a small table and build a string using
values from the fields associated with a part number, and I can't find any
way to process each record individually. The string needs to be initialized
with the data associated with the 1st record's part number, and I need to
build the string until a new part number is incurred. Once a new part number
is found in the table, the string is written to a different table and reset
for this next part number in the table. Need to repeat until all records in
the table have been processed.
I use ADO in access 2000 to work thru local recordsets, I just can't find
anyway to do this in a stored SQL procedure.
Thanks for any suggestions, Eric. |