Correlated Sub-queries: CSQ Flattening
update orders set ship_charge = 0
select "X" from customer c
where c.customer_num = orders.customer_num
1) informix.c: SEQUENTIAL SCAN
Filters: informix.c.state = 'MD'
2) informix.orders: INDEX PATH
(1) Index Keys: customer_num
orders.customer_num = c.customer_num
An index could be created on state to avoid the sequential scan.