我有下面的订单表,我想在今天的日期和时间(美国 17:00)检索那些不在订单状态“已处理”和 cacel)状态“已取消”的记录。请帮我完成我的问题。
order id ordername order_status cancel_status order_time cancel_time
==============================================================================================
1 Iphone processed cancelled 10/08/2012 16:00:00 10/08/2012 16:00:00
2 samsung notprocessed null null null
3 nokia processed cancelled 10/08/2012 16:00:00 10/08/2012 17:00:00
4 motorola notprocessed null null null
5 HTC processed null 10/08/2012 17:00:00 null
我尝试了以下方式,但没有返回任何记录。请帮助我。
SELECT *
FROM
order
WHERE
to_char(order_time,'YYYYMMDD HH24:MI:SS')>To_char(sysdate,YYYYMMDD) || ' '|| '17:00:00'
and to_char(cancel_time,'YYYYMMDD HH24:MI:SS')>To_char(sysdate,YYYYMMDD) || ' '|| '17:00:00'
and order_time is null
and cancel_time is null