oracle日期時間比較

2021-06-08 23:42:58 字數 2481 閱讀 3669

select 'cicai' as merchantname,

tre.bank_code as bankcode,

sum(tr.trade_sum) as totalmount,

count(*) as count,

tr.biz_type as biztype

from trade_relation tre, trade_record tr

where tr.id = tre.id

and tr.trade_process = 'cicai'

and tr.trade_start_time >=

to_date('2010-04-08', 'yyyy-mm-dd hh24:mi:ss')

and tr.trade_start_time <=

to_date('2012-04-08', 'yyyy-mm-dd hh24:mi:ss')

group by tre.bank_code, tr.biz_type

1.日期時間間隔操作

當前時間減去7分鐘的時間

select sysdate,sysdate - interval '7' minute from dual

當前時間減去7小時的時間

select sysdate - interval '7' hour from dual

當前時間減去7天的時間

select sysdate - interval '7' day from dual

當前時間減去7月的時間

select sysdate,sysdate - interval '7' month from dual

當前時間減去7年的時間

select sysdate,sysdate - interval '7' year from dual

時間間隔乘以乙個數字

select sysdate,sysdate - 8 *interval '2' hour from dual

2.日期到字元操作

select sysdate,to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') from dual

select sysdate,to_char(sysdate,'yyyy-mm-dd hh:mi:ss') from dual

select sysdate,to_char(sysdate,'yyyy-ddd hh:mi:ss') from dual

select sysdate,to_char(sysdate,'yyyy-mm iw-d hh:mi:ss') from dual

參考oracle的相關關文件(oracle901doc/server.901/a90125/sql_elements4.htm#48515)

3. 字元到日期操作

select to_date('2003-10-17 21:15:37','yyyy-mm-dd hh24:mi:ss') from dual

具體用法和上面的to_char差不多。

4. trunk/ round函式的使用

select trunc(sysdate ,'year') from dual

select trunc(sysdate ) from dual

select to_char(trunc(sysdate ,'yyyy'),'yyyy') from dual

5.oracle有毫秒級的資料型別

--返回當前時間 年月日小時分秒毫秒

select to_char(current_timestamp(5),'dd-mon-yyyy hh24:mi:ssxff') from dual;

--返回當前 時間的秒毫秒,可以指定秒後面的精度(最大=9)

select to_char(current_timestamp(9),'mi:ssxff') from dual;

6.計算程式執行的時間(ms)

declare

type rc is ref cursor;

l_rc rc;

l_dummy all_objects.object_name%type;

l_start number default dbms_utility.get_time;

begin

for i in 1 .. 1000

loop

open l_rc for

'select object_name from all_objects '||

'where object_id = ' || i;

fetch l_rc into l_dummy;

close l_rc;

end loop;

dbms_output.put_line

( round( (dbms_utility.get_time-l_start)/100, 2 ) ||

' seconds...' );

end;

js日期時間比較函式

js日期比較 yyyy mm dd function duibi a,b else return true js時間比較 yyyy mm dd hh mi ss function comptime else if a 0 else if a 0 else var lktime new date ar...

mysql日期例項 mysql日期時間比較簡單例項

如下 複製 select from tb where c date format 2007 07 06 y m d and c date format 2007 07 09 y m d select from tb where c date 2007 07 07 and c date 2007 07...

mysql日期例項 mysql日期時間比較簡單例項

日期比較,mysql 如下 select from tb where c date format 2007 07 06 y m d and c date format 2007 07 09 y m d select from tb where c date 2007 07 07 and c date...