Hi,
I have this select statement,
select o.questionID,p.questionid
from opportunityanswers o inner join physiciananswers p
on o.questionID = p.questionID
and physicianID='128'
I would to use 0.question in my query below
I tried this questionid=rs(o.questionID)
and then tried to use questionid in my asp page
and I keep on getting an error
Item cannot be found in the collection corresponding to the requested name or ordinal.
if i run the same query in sql analyser i get the results i want.
Thanks in advance
I have this select statement,
select o.questionID,p.questionid
from opportunityanswers o inner join physiciananswers p
on o.questionID = p.questionID
and physicianID='128'
I would to use 0.question in my query below
I tried this questionid=rs(o.questionID)
and then tried to use questionid in my asp page
and I keep on getting an error
Item cannot be found in the collection corresponding to the requested name or ordinal.
if i run the same query in sql analyser i get the results i want.
Thanks in advance