I'm a developer trying to do some SQL Server 2008 and I am stuck.
I have the following two tables
Table 1
Local Area | ManagerID
ABC-SDF-LKJ | 1234
ABC-KJH-GHJ | 4321
XZY-TRS-YEU | 4321
XZY-BFG-GFH | 6789
INT-HSL-DSL | 6789
Table 2
Region | ManagerID
ABC | 4321
INT | 5764
XZY | 8647
I need to create a query that will return all rows for a ManagerId. If a ManagerId exists in table 2 then it should return all rows from table 1 they are the manager for and all rows from table 1 that start with the region they are manager for.
Given the data above ManagerId = 4321 should return
ABC-SDF-LKJ
ABC-KJH-GHJ
XZY-TRS-YEU
While ManagerId = 8647 should return
XZY-BFG-GFH
XZY-TRS-YEU
and ManagerId = 1234 should return
ABC-SDF-LKJ
Does anyone know how to do this?