SQL SERVER写法:
(当前月)
select * from 你的表 where Month(销售日期字段)=Month(getdate())
(指定月)
select * from 你的表 where Month(销售日期字段)=Month('2001-10-1')
在ACCESS中写法:
(当前月)
select * from 你的表 where Month(销售日期字段)=month(Date())
(指定月)
select * from 你的表 where Month(销售日期字段)=month(#2001-10-1#)