目录

MS Access DatePart() 函数

示例

返回指定日期的年份部分:

SELECT DatePart("yyyy", #09/05/2017#);
亲自试一试 »

定义和用法

DatePart() 函数以整数形式返回日期的指定部分。

语法

DatePart( datepart, date, firstdayofweek, firstweekofyear)

参数值

Parameter Description
datepart Required. The date part to return. Can be one of the following values:
  • yyyy = Year
  • q = Quarter
  • m = month
  • y = Day of the year
  • d = Day
  • w = Weekday
  • ww = Week
  • h = hour
  • n = Minute
  • s = Second
date Required. The date value to be evaluated
firstdayofweek Optional. Specifies the first day of the week. Can be one of the following values:
  • 0 = Use the NLS API setting
  • 1 = Sunday (default)
  • 2 = Monday
  • 3 = Tuesday
  • 4 = Wednesday
  • 5 = Thursday
  • 6 = Friday
  • 7 = Saturday
firstdayofyear Optional. Specifies the first week of the year. Can be one of the following values:
  • 0 = Use the NLS API setting
  • 1 = Use the first week that includes Jan 1st (default)
  • 2 = Use the first week in the year that has at least 4 days
  • 3 = Use the first full week of the year

技术细节

工作于: 从 Access 2000

更多示例

示例

返回指定日期的月份部分:

SELECT DatePart("m", #09/05/2017#);
亲自试一试 »

示例

返回今天的日期是星期几:

SELECT DatePart("w", Date());
亲自试一试 »