I was curious if anyone could give me a better way of doing something similar to the following only without using an SQL statement.
My issue is that one of the tables happens to be a temp-table and the SQL supported statements in 4GL can not utilize temp-tables.
Thanks in advance for any help.
Code:
select distinct (some fields)
from table1
join table2
join table3
group by (some fields).
My issue is that one of the tables happens to be a temp-table and the SQL supported statements in 4GL can not utilize temp-tables.
Thanks in advance for any help.