I have a Union Query I made but now can't seem to remember how to add to it! I need to add the field Bank which is common i both tables.
Here is the code:
SELECT Employees.[EmployeeID], [FirstName] & " " & [LastName] AS ExpName
FROM Employees
UNION SELECT [OtherID]+[Oth] AS [EmployeeID], [FirstName] & " " & [LastName] AS ExpName
FROM TOthers;