cfbeginner
MIS
Hi There,
I would like to turn the below SELECT query in SQL into Access VBA using the DBConnection.Execute(.....)
SELECT tblCust, tblOrder, tblreserve, tblpayment
FROM tblUsers INNER JOIN
tblOrder ON tblcust.ID = tblOrder.custID INNER JOIN
tblreserve ON tblcust.ID = tblreserve.custID INNER JOIN
tblpayment ON tblcust.ID = tblpayment.custID
The custID will be pass in from the Access form.
Thanks
I would like to turn the below SELECT query in SQL into Access VBA using the DBConnection.Execute(.....)
SELECT tblCust, tblOrder, tblreserve, tblpayment
FROM tblUsers INNER JOIN
tblOrder ON tblcust.ID = tblOrder.custID INNER JOIN
tblreserve ON tblcust.ID = tblreserve.custID INNER JOIN
tblpayment ON tblcust.ID = tblpayment.custID
The custID will be pass in from the Access form.
Thanks