Lab1
Lab1
π_Emp_ID, First_Name, Last_Name, Start_date(σ_Start_date >= '2000-01-01' AND Start_date <= '2001-
12-31' (σ_Branch_ID = 1 (Employees)))
Question b:
π_Emp_ID, (First_Name || ' ' || Last_Name) AS Emp_FullName, Start_Date, BranchName (
σ_Title = 'Teller' (Employees) ⨝ Branch_ID σ_BranchName = 'Woburn branch' (Branches)
)
Question c:
π_Branch_ID, BranchName (
Branches - π_Branch_ID, BranchName (
σ_Start_date >= '2001-01-01' AND Start_date <= '2001-12-31' (
Employees ⨝ (Employees.Branch_ID = Branches.Branch_ID) Branches
)
)
)
Question d: