I have tables I wish to join. They are related by a customer match number and cust match no. I want to enter data from one table, then join with another then display the results from the second table. My code is shown below:
SELECT [title],
[customer_no],
[forename],
[surname],
[res_addr_1],
[res_addr_2],
[city],
[country],
[res_postcode],
[DOB],
[Home_phone_no],
[Mobile_phone_no]
FROM Customer
LEFT JOIN Account ON cust_match_no
FROM Customer = customer_match_no
FROM Account
WHERE Account.account_no = '12345678';
However I keep getting errors with incorrect syntax near "=" and I have no idea why!