‎2008 Apr 09 4:39 PM
Hi all
I want to extract data from three fields. among these three fields, two fields are from standard table and one is from ztable and how can i put it select statement.
Plz tell
Regards
Mona
‎2008 Apr 09 4:44 PM
with a join using the key fields your standard table and your ztable have in common
‎2008 Apr 09 4:44 PM
with a join using the key fields your standard table and your ztable have in common
‎2008 Apr 09 4:44 PM
hi,
use innerjoin...
Select afield1 afield2 b~field into table itab from dbtable as a innerjoin ztable as b on dbtable-field = ztable-field.
Regards
SYed A