0
I have the following tables Employee(Empnum ,Name) Project(Projnum,Name) and Assignment (Empnum ,Projnum,Function)
I wanted to build a query in which I return the employee number (Empnum ) that through the Assignment participated in all the Projects. I tried to do something like:
Select A.ProjNum
From Atribuicao A
Where A.EmpNum in (Select E.EmpNum From Empregado E)
But it’s insufficient... and I’m not getting the result.
Search by division in relational Lgebra , simplifying a not exists in another not exists , classic solution , I had an example , I lost.
– Motta