I have created a stored proc that returns one column of id's for linking.
sql = call myproc(555)
The above works perfectly returning a result set of id's.
sql = "select * from mytable where id in (call myproc(555))"
The above query says my syntax is incorrect and bombs.
Suggestions? Thanks Glenn