, , :
select sp.pluc_dt
from ship_plu sp,ship s
where sp.pluc_dt between '16-Feb-2014' and '20-Feb-2014'
and sp.ship_num=s.ship_num
and s.rcv_dt is null
ship_plu table . ( s.rcv_dt null, ), ship_plu .
, , pluc_dt, s.rcv_dt null.
. :
update ship_plu
set pluc_dt='1-Jan-1999'
where ID in (
select sp.ID
from ship_plu sp,ship s
where sp.pluc_dt between '16-Feb-2014' and '20-Feb-2014'
and sp.ship_num=s.ship_num and s.rcv_dt is null
)
, !