Viewing 4 posts - 1 through 5 (of 5 total)
thank you thank you, now i understand what u mean by hard code and insert. thanks for the explanation
June 18, 2010 at 7:53 am
david and chris thanks for the info
and i agree that cursor 30 times less slow.
but to be honest i did not understant what chris is trying to say
"Hard-code the...
June 18, 2010 at 6:13 am
i found the solution using cursor
declare @ingred char(20)
declare mycursor cursor
local fast_forward
for
select ingredien from resipe_table where recipeid=(value of recipeID)
open mycursor
fetch next from mycursor
into @ingred
while @@fetch_status=0
begin
...
June 17, 2010 at 4:54 pm
thanks for your reply, please can you show how to do this
June 17, 2010 at 9:24 am
Viewing 4 posts - 1 through 5 (of 5 total)