配送遅延が最も長かった注文の配送先の市と州をリストします
以下を試しましたが、表示できません。
TRENTON NJ 4
クエリによって返される必要がある唯一の結果として。
select shipcity, shipstate, shipdate-orderdate "Shipping Delay"
from orders
having max(shipdate-orderdate) >any (select shipdate-orderdate
from orders
where shipdate is not null)
group by shipcity, shipstate, shipdate-orderdate;