Hi,
I was wondering if it is possible to join more than two tables inside a query. Im getting an error and I assume it is becaue im trying to join multiple tables.
It works in SQL using:
'Select USERCARD.HOLDID, MASTPLU.LOYALTY_POINTS, CHIPTRAN.PLQTY from CHIPTRAN
inner join USERCARD on USERCARD.SERIALNO = CHIPTRAN.SERIALNO
inner join MASTPLU on CHIPTRAN.MASTLINE = MASTPLU.MASTLINE
inner join MAC on MAC.MACID = CHIPTRAN.MACID
where... '
Any ideas???
I was wondering if it is possible to join more than two tables inside a query. Im getting an error and I assume it is becaue im trying to join multiple tables.
It works in SQL using:
'Select USERCARD.HOLDID, MASTPLU.LOYALTY_POINTS, CHIPTRAN.PLQTY from CHIPTRAN
inner join USERCARD on USERCARD.SERIALNO = CHIPTRAN.SERIALNO
inner join MASTPLU on CHIPTRAN.MASTLINE = MASTPLU.MASTLINE
inner join MAC on MAC.MACID = CHIPTRAN.MACID
where... '
Any ideas???