SQL獲取當前時間 年 月 日等

2021-10-02 18:28:51 字數 933 閱讀 3643

sql:select now();

結果:2018-04-10 14:21:39

2、獲取當前時間年份:

sql:select year(now());

結果:2018

(1)獲取上一年

sql:select year(now())-1;

結果:2017

獲取其餘年份,同上

3、獲取當前時間年份及當前該年第幾周

sql:select yearweek(now());

結果:201814

代表當前日期是2023年第14周

4、獲取當前時間月份

sql:select month(now());

結果:4

5、獲取當前時間月份英文名稱

sql:select monthname(now());

結果:april

6、獲取當前時間是該月的第幾天

sql:select day(now());

結果:10

7、獲取當前時間是週幾

sql:select dayname(now());

結果:tuesday

8、獲取當前時間是該年第幾天

sql:select dayofyear(now());

結果:100

9、獲取當前時間是該月的第幾天

sql:select dayofmonth(now());

結果:10

10、獲取當前時間是該周第幾天

sql:select dayofweek(now());

結果:3

預設週日為第一天

注:可把now()替換成想要查詢的日期

舉例:sql:select dayofyear(『2008-08-08 08:08:08』);

結果:221

2023年8月8號是2023年的第221天。

獲取當前時間分開的年,月,日

curday 1.獲取當前月份有多少天 nscalendar calendar nscalendarcurrentcalendar nsrange range calendarrangeofunit nsdaycalendarunitinunit nsmonthcalendarunitfordate...

js獲取當前時間年份,處理年月日

js中獲得當前時間年份 月份 日期 獲取完整的日期 var date new date var y date.getfullyear var m date.getmonth 1 m m 10 0 m m var d time.getdate d d 10 0 d d y 年份 m 月份 d 日期 c...

Oracle 獲取當前年 月 日

oracle 獲取當前年 月 日 1 oracle中extract 函式從oracle 9i中引入,用於從乙個date或者interval型別中擷取到特定的部分 語法如下 extract from selectextract yearfromsysdate fromdual 當前年 selectex...