目录

MS Access DateSerial() 函数

示例

从其各个部分返回日期:

SELECT DateSerial(2017, 4, 20);
亲自试一试 »

定义和用法

DateSerial() 函数返回指定部分(年、月和日值)的日期。

语法

DateSerial( year, month, day)

参数值

Parameter Description
year Required. Specifies a year (4 digits)
month Required. Specifies a month (from 1 to 12)
day Required. Specifies a day (from 1 to 31)

技术细节

工作于: 从 Access 2000

更多示例

示例

从其各个部分返回日期:

SELECT DateSerial(2017-10, 4-1, 20-5);
亲自试一试 »