posted 22 years ago
Why don't you put your select that is in the first select into your From clause, then the where clause to link the table to the result, and then get your fields. as in
Your way:
Select fielda, (select fieldb from a_table whereclaused here), from table_b
The other way
Select fielda, fieldb
from table_b b, (select fieldb from a_table whereclause here) a
WHERE a.linked_field = b.linked_field;
Just a suggestion, not sure if it will work for you.
Mark