私はこれらのテーブルを持っています
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
次の関係代数演算{σ、π、∪、ρ、-、×}のみを使用して、すべての女性従業員の各子の誕生日を取得したいと思います。
これまでのところ、πbdate(σ{sex ='f'} Employee)x(σ{relationship ='child'} Dependent)がありますが、正しくないと思います。