我有这些桌子
Employee(ssn, name, sex, address, salary, bdate, dno, superssn)
fk:superssn is ssn in Employee
fk:dno is dnumber in Department
Department(dnumber, dname, mgrssn, mgrstartdate)
fk:mgrssn is ssn in Employee
Dept_locations(dnumber, dlocation)
fk:dnumber is dnumber in Department
Project(pnumber, pname, plocation, dnum)
fk:dnum is dnumber in Department
Dependent(essn, dependent_name, sex, bdate, relationship)
fk: essn is ssn in Employee
Works_on(essn,pno,hours)
fk: essn is ssn in Employee; pno is pnumber in Project
我想仅使用以下关系代数运算 {σ, π, ∪, ρ, −, ×} 来检索财务部门的位置列表。
到目前为止,我有:π dlocation(σ 部门(dname = 'research'))
我真的很困惑,很困惑......我不知道是否可以在没有等值连接操作的情况下做到这一点。