我有一张数据表。该表有订单条目,每个订单都有一些类型(或状态,例如已订购、...、抛光、包装、发货)。
现在,我想做这个查询。
select * from orders as o
where not exists
(SELECT * from orders as oo
where
o.order = oo.order and
oo.type="SHIPMENT")
type 和 shipping 有一个索引,但它只在进行全扫描后使用。所以查询需要很长时间。我想直接呈现数据。