用next day得出本週的周一到週日的日期

2021-05-02 22:00:32 字數 533 閱讀 5654

用next_day得出本週的周一到週日的日期

next_day()的語法格式:

next_day := next_day(date,day_of_the_week);

它用來返回從第乙個引數指定的日期開始,第一次到達第二個引數(星期)的日期.

引數day_of_the_week可以是從1到7的數字,也可以是sunday...saturday之類的英語單詞

例如:取本周一是哪一天,有如下兩種寫法。

sql>select trunc(next_day(sysdate-7,'monday')) from dual;

sql>select trunc(next_day(sysdate-7,2)) from dual;

取週日的寫法:

sql>select trunc(next_day(sysdate-1,'sunday')) from dual;

sql>select trunc(next_day(sysdate-1,7)) from dual;

注意:週日是一周的第一天。

Calendar獲取上週周一至本周一的日期

tabstudydetailed record null date date new date datetime 取上週一 00 00 00 calendar cal1 calendar.getinstance cal1.settime date int n1 1 n為推遲的週數,1上週,0本週,1...

js獲取本週周一的日期

var nowtemp new date 當前時間 var onedaylong 24 60 60 1000 一天的毫秒數 var c time nowtemp.gettime 當前時間的毫秒時間 var c day nowtemp.getday 7 當前時間的星期幾 var m time c ti...

js獲取本周一的日期 格式為yy mm dd

格式為yy mm dd 除此之外還有本月 本年 今天 明天的日期獲取 時間獲取 var date newdate console.log date 年 var year date.getfullyear console.log year 月 var month date.getmonth 1cons...