MS Access MonthName() 函数
实例
根据数字返回月份的名称:
SELECT MonthName(3);
定义和用法
MonthName() 函数根据数字返回月份的名称。
语法
MonthName(number, abbreviate)
参数值
参数 | 描述 |
---|---|
number | 必需。 一个从 1 到 12 的值,代表月份 |
abbreviate | 可选。一个布尔值。 True = 月份名称应缩写。 False = 月份名称不应缩写。 False 是默认值 |
技术细节
适用于: | From Access 2000 |
---|
更多实例
实例
根据数字返回月份的缩写名称:
SELECT WeekdayName(3, true);