access 数据库中如何只提取 时间日期字段 中的月份 如2011-11-10 如何提取月份11 如何操作请写的详细点 谢

2024年12月03日 08:33
有2个网友回答
网友(1):

SELECT Month(时间) AS 表达式1 FROM 表

得到的结果就是月份。

网友(2):

year(date()) 只读年
month(date()) 只读月
day(date()) 只读日