Hi stnkyminky,
It took me awhile to refresh my memory. So I was trying to create a table claim#,proc1,qty1,proc2,qty2,proc3,qty3 using the following query:
select claim#,y.proc1,qty1,y.proc2,qty2,y.proc3,qty3
from claims_tables,
udf_claim_procs(claim#) y
I mistakenly expected that for...