Lets say I have 4 tables
Region (RegionCode, RegionName)
Customer (CustCode, CustName, CustAdress, CustBalance, RegionCode)
EmployeeType (EmployeeType, HourlyPayRate,)
Employee (EmployeeNo, EmployeeName, EmployeeAddress, RegionCode, EmployeeType)
My goal is to
List the Employee numbers, names and address of all the employees working in the Region whose code is MUN and the name is John Smith.
My answer is as follows
SELECT EmployeeNo, EmploeeName, EmployeeAddress
FROM Employee
WHERE RegionCode = 'MUN' AND EmployeeName = 'John Smith';
I am tempted to join tables here, but am I right in saying as I can extract all information from this single table Employee
I do not have to?