SELECT statement using set Algebra

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

Having these two tables:

DEPARTMENT

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

DEPTLOC



        
2条回答
  •  没有蜡笔的小新
    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

提交回复
热议问题