I want to make a SQL query that will link data from two tables, and then relate the data from the second table like this
SELECT CustNo AS 'Customer No.', CompanyName, LiasonNo AS 'Liason'
FROM Customer
What I want to do, is relate Liason Number to the Employee Number on another table and then have it list that number as the Employee LastName.
Would I use an inner join to do this?