In MS Access, I have 3 tables as below.
Table 1 tblOrders contains following fields.
fldOrdrID | fldCustID | fldProdID | fldOrdrDate
----------|-----------|-----------|------------
Table 2 tblCustomers contains following fields.
fldCustID | fldCustName | fldCustAddr
----------|-------------|------------
Table 3 tblProducts contains following fields.
fldProdID | fldProdName
----------|------------
How should I write a SELECT statement in MS Access to basically get the very four columns from table 1 tblOrders but replace fldCustID
with fldCustName
and replace fldProdID
with fldProdName
? Something like the below.
fldOrdrID | fldCustName | fldProdName | fldOrdrDate
----------|-------------|-------------|------------
Thanks