‎2008 Jul 28 10:02 PM
Hi,
Lets suppose, i have made inner join on three tables, a, b & c. I have mentioned the fields which i need to select from tables a and b. But in table c i want to select all fields. is there any way like '*', that without mentioning like cf1, cf2...... the fields, I can select all the fields from table C.
Thanks,
‎2008 Jul 28 10:09 PM
‎2008 Jul 28 10:09 PM
‎2008 Jul 28 10:19 PM
I just tried that, it was an interesting question. I dont think there is a way to put * like that.
You can do it in open SQL, but putting "TableName.*" in joins.
‎2008 Jul 29 1:30 AM
Hi ,
step 1) select * from c into itab1
step 2) then write a inner join b & c and put it into other internal table
step 3) loop at itab1
read statement from itab2
endloop
Regards
Sreeni