on 2017 Nov 23 9:23 AM
Please see the ABAP documentation in your system. (You can ommit the INNER keyword, as INNER joins are the default)
SELECT scarr~carrid, scarr~carrname,
spfli~connid
FROM scarr
INNER JOIN spfli ON scarr~carrid EQ spfli~carrid
AND spfli~cityfrom EQ 'NEW YORK'
INTO TABLE @DATA(lt_itab).
cl_demo_output=>display( lt_itab ).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
69 | |
13 | |
10 | |
9 | |
9 | |
8 | |
6 | |
6 | |
4 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.