数据库有一个表stow_hist,表里有lst_tx_date的时间字段。想每隔15分钟根据LST_TX_DATE的时间段查询。如何改写下面的SQL语句:select'HPC'assend_from,(sh.cntr||sh.chk_dgt)cntr,(c....
数据库有一个表stow_hist,表里有lst_tx_date的时间字段。想每隔15分钟根据LST_TX_DATE的时间段查询。如何改写下面的SQL语句:
select
'HPC'as send_from,
(sh.cntr||sh.chk_dgt)cntr,
(c.trk)truck_no,
'无'as cntr_plac,
decode('sh.eqp_sta','I','E')as I_E_ID,
decode('c.eqp_sta','I',)
(ec.len_class)cntr_siz_cod,
(ec.type_class)cntr_typ_cod,
'无' as cntr_corp_cod,
(c.opr) as cntr_oper_cod,
(sh.GRS_WGT) cntr_net_wet,
(C.GRS_WGT) cntr_gross_wet,
(c.seal)cntr_seal_no,
'无'as ship_no,
(sh.vsl)ship_cod
From stow_hist sh, container c,OPR_REF opr,loc_ref lr,vschedule v, vessel vl,eqp_class ec
WHERE tf.TRK_TYPE='CY' and tf.activity='GR'
and SH.CNTR = C.CNTR(+)
and sh.opr = opr.opr(+)
......省略
and lst_tx_date>=to_date()
and lst_tx_date<=to_date()
这里每隔15分钟取值应该怎样改?谢谢!
展开