Guess there are similar questions and the answere might is easy but I cant help my self and thats why I ask you guys.
I have some Data in a DB (Centura/Gupta SQLBase 7) no Left/Right Join possible - obviously not implemented in sqlbase sql
Here is my select
SELECT
I.IARTNR,
L.ARTNAME
FROM
INVENTUR I,
LAGER L
WHERE
L.ARTSTR = I.IARTNR
AND
I.AB = '2015-81';
returns 20 rows, not 18 as expacted.
INVENTUR
rows with AB
set to 2015-81
are 18 and in LAGER
there are <3000
rows. What I'm trying to do is select all articles von INVENTUR
and add the article name thats written in LAGER
.
Whats wrong with my select ? Running this "mysterious" since 3 days.