I have a query that does an inner join. I want it to just pull in the first match from the second table in the event there are multiple matches. How do I limit the query to only pull in the first match found for the rcust.CustID?
Thanks for any help.

SELECT Mid(iusr_lu.UVAR, (InstrRev(iusr_lu.UVAR, " ") + 1)), iusr_lu.UFST, iusr_lu.ULST, iusr_lu.UNM, rcust.CustAdd1 INTO DSGTESTING
FROM iusr_lu INNER JOIN rcust ON Mid(iusr_lu.UVAR, (InstrRev(iusr_lu.UVAR, " ") + 1)) = rcust.CustID WHERE Not IsNull(iusr_lu.UVAR);
Thanks for any help.


SELECT Mid(iusr_lu.UVAR, (InstrRev(iusr_lu.UVAR, " ") + 1)), iusr_lu.UFST, iusr_lu.ULST, iusr_lu.UNM, rcust.CustAdd1 INTO DSGTESTING
FROM iusr_lu INNER JOIN rcust ON Mid(iusr_lu.UVAR, (InstrRev(iusr_lu.UVAR, " ") + 1)) = rcust.CustID WHERE Not IsNull(iusr_lu.UVAR);