Hi,
on my iSeries the following join perfectly runs:
select a.companynumber, a.locationnumber, a.chainstorenumber, a.username, a.usertext, a.passwordchangedate, a.email, a.lotususername, b.locationname, c.name, a.validfrom, a.validto, a.password
from j_jus a, j_loc b
left join j_ms c
on a.companynumber = c.companynumber and a.chainstorenumber = c.chainstorenumber
where a.companynumber = b.companynumber and a.locationnumber = b.locationnumber
on Windows DB2 this results in a error, can somebody give me a hint why this doesnt work on Windows DB2 ?
Thanks