程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> sql-求 oracle大神啊 ~~~~~~~~~~~~ create time 加7天如何寫

sql-求 oracle大神啊 ~~~~~~~~~~~~ create time 加7天如何寫

編輯:編程綜合問答
求 oracle大神啊 ~~~~~~~~~~~~ create time 加7天如何寫

select c.* from crm_order_taobao_opt_history c where c.CREATE_TIME<'當前時間sysdate' and '當前時間sysdate'<'CREATE_TIME加上7天的時間' and c.order_sn like 'TB%' and c.opt_status=12 and not exists (select 1 from crm_order_taobao_opt_history o where c.order_sn=o.order_Sn and o.opt_status=13 ) and ( exists(select 1 from crm_tb_apply_refund_record o where o.order_sn=c.order_sn and o.audit_Result =126080 ) or not exists(select 1 from crm_tb_apply_refund_record o where o.order_sn=c.order_sn ) or exists(select 1 from crm_tb_apply_refund_record o where o.order_sn=c.order_sn and o.audit_Result =126062 and o.last_operate_time is not null and o.last_operate_time<1438162149 and o.cancel_result=40035 and nvl(o.repeat_Count,0)<11) )

最佳回答:


使用to_date日期轉換,varchar轉date,然後在+7
 select to_date('2004-05-07 13:23:44','yyyy-mm-dd hh24:mi:ss')  + 7  from dual//
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved