以下是「列出擁有所有可用顏色的項目的客戶的查詢」 也就是說,對於每種可用顏色,客戶擁有該顏色的某些 項目。 項目是由客戶使用EXCEPT的DB2 DB2查詢
select cust#, cname
from Customer
except
select C.cust#, C.cname
from (select D.cust#, A.colour
from Customer D,
Avail_Colours A
except
select I.cust#, I.colour
from Item I
) as M,
Customer C
where C.cust# = M.cust#;
如果我想改寫這個問題要購買的物品的表格:這是「誰擁有一些可用的顏色全部項目列表的客戶」,列出可用的顏色和客戶,其中一個客戶擁有這種顏色的所有項目?