on 2004 Nov 30 1:29 PM
Hi
How can I create a <b>one to one</b> join (not one record to many records) between 2 tables in sq02 ?
thanks,
Itzhak
Using primary keys in both tables... you will get only that join if your tables are related 1:1
If you can do it with ABAP, just use
SELECT a~* FROM a INNER JOIN b ON ...
And then LOOP AT a doing a SELECT SINGLE * FROM b WHERE (join conditions).
Almost is what I believe...
Best wishes,
Vic
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
70 | |
10 | |
10 | |
7 | |
6 | |
6 | |
6 | |
5 | |
5 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.