MS Access 中的 DateSerial() 和 DateValue()函数
在本文中,我们将通过示例介绍 MS Access 中的 DateSerial() 和 DateValue()函数,并将介绍带有输出的 DateSerial 和 DateValue 查询。
日期序列()函数:
DateSerial 函数的格式包含年、月和日值三部分。它以指定格式返回日期。有三个参数,第一个是年,第二个是月,第三个是日。
句法 :
DateSerial(year, month, day)
参数值:
Parameter | Description |
---|---|
year | It is required. It will specify a year of 4 digits. |
month | It is required. It will specify a month of 2 digits. |
day | It is required. It will specify a day of 2 digits. |
示例 1:
SELECT DateSerial(2020-10, 10-1, 20-5);
输出 :
9/15/2010
示例 2:
SELECT DateSerial(2020, 4, 20);
输出 :
4/20/2020
日期值()函数:
在 MS Access 中,DateValue()函数根据字符串返回日期。在此函数中,将传递包含日、月和年的字符串,并根据字符串返回日期。
笔记 :
如果没有给出字符串的年份部分,那么它将采用当前年份。
句法 :
DateValue(string_date)
参数值:
Parameter | Description |
string_date | It is required. It will represents a date from rom January 1, 100 to December 31, 9999. |
示例 1:
SELECT DateValue("May 12, 2010");
输出 :
5/12/2010
示例 2:
SELECT DateValue("July 10");
输出 :
7/10/2020