oracle取上週一到週末日期的查詢語句
-- oracle 取上週一到週末的sql
-- 這樣取的是 在一周內第幾天,是以週日為開始的
select
to_char(to_date(
'20130906'
,
'yyyymmdd'
),
'd'
)
from
dual;
--結果:6 注釋:2013.09.06是周五,為本週的第六天
select
to_char(sysdate+(2-to_char(sysdate,
'd'
))-7,
'yyyymmdd'
)
from
dual;
---上週一
select
to_char(sysdate+(2-to_char(sysdate,
'd'
))-1,
'yyyymmdd'
)
from
dual;
---上週日
-- 乙個更簡單的寫法 , 返回date型別
select
trunc(sysdate,
'iw'
) - 7
from
dual;
---上週一
select
trunc(sysdate,
'iw'
) - 1
from
dual;
--上週日
-- 這樣查出來是本周一
select
trunc(sysdate,
'iw'
)
from
dual;
select
trunc(to_date(
'20130915'
,
'yyyymmdd'
),
'iw'
)
from
dual;
-- 結果:2013/9/9 注釋:20130915 為週日
-- 返回char型別
select
to_char(trunc(sysdate,
'iw'
) - 7,
'yyyymmdd'
)
from
dual;
--上週一
select
to_char(trunc(sysdate,
'iw'
) - 1,
'yyyymmdd'
)
from
dual;
--上週日
-- 獲取上週一的函式
create
or
replace
function
fun_acc_getlastweekstart(systemdate
in
date
)
return
varchar2
is
result_str varchar2(15);
begin
select
to_char(trunc(systemdate,
'iw'
) - 7,
'yyyymmdd'
)
into
result_str
from
dual;
return
result_str;
end
fun_acc_getlastweekstart;
-- 獲取上週日的函式
create
or
replace
function
fun_acc_getlastweekend(systemdate
in
date
)
return
varchar2
is
result_str varchar2(15);
begin
select
to_char(trunc(systemdate,
'iw'
) - 1,
'yyyymmdd'
)
into
result_str
from
dual;
return
result_str;
end
fun_acc_getlastweekend;
-- 測試這個函式
select
fun_acc_getlastweekstart(sysdate)
from
dual;
select
fun_acc_getlastweekend(sysdate)
from
dual;
select
fun_acc_getlastweekstart(to_date(
'20130915'
,
'yyyymmdd'
))
from
dual;
select
fun_acc_getlastweekend(to_date(
'20130915'
,
'yyyymmdd'
))
from
dual;
--查詢結果:20130826、20130901、20130902、20130908
-- 注:
select
sysdate
from
dual;
--查詢結果:2013/9/6 9:45:14
ORACLE 日期函式
1.select to char to date 2011 5 1 yyyy mm dd day from dual 返回星期日 select to char to date 2011 5 1 yyyy mm dd day nls date language american from dual 返...
oracle日期函式
說明 用於從乙個日期值增加或減少一些月份 d代表乙個日期 n為正數則代表在d日期 上增加n 月份,n 為負數則代表在 d日期上減少n月 例 select add months sysdate,12 next year from dual 2 current date 說明 返回當前會話時區中的當前日...
Oracle日期函式
select sysdate from dual 從偽表查系統時間,以預設格式輸出。sysdate 5 24 60 60 在系統時間基礎上延遲5秒 sysdate 5 24 60 在系統時間基礎上延遲5分鐘 sysdate 5 24 在系統時間基礎上延遲5小時 sysdate 5 在系統時間基礎上延...