Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Select statement queries

Former Member
0 Likes
474

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
449

with a join using the key fields your standard table and your ztable have in common

2 REPLIES 2
Read only

Former Member
0 Likes
450

with a join using the key fields your standard table and your ztable have in common

Read only

Former Member
0 Likes
449

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