SELECT statement using set Algebra

前端 未结 2 1286
醉话见心
醉话见心 2021-01-29 10:20

Having these two tables:

DEPARTMENT

DNAME
-----------
RESEARCH
   IT
 SCIENCE

DEPTLOC



        
相关标签:
2条回答
  • 2021-01-29 10:44

    Set Algebra means using set operators: UNION, MINUS, INTERSECT.

    0 讨论(0)
  • 2021-01-29 10:47

    If I where to guess you are asked to provide a solution using set operations like UNION, INTERSECT and DIFFERENCE (MINUS or EXCEPT). If A is departments located in Boston and B is departments located in London then (A - B) U (B - A) is one solution

    0 讨论(0)
提交回复
热议问题