Microsoft Access创建一个查询来查找10到11个月前的记录

时间:2018-07-25 13:08:48

标签: ms-access

我创建了一个查询,该查询可能会错过每月的29天和30天

string appPath = String.Empty;
if(HttpContext.Current.Request.ApplicationPath.Length > 1)
{ appPath = HttpContext.Current.Request.ApplicationPath; }

ScriptManager.RegisterStartupScript(this, this.GetType(), "redirect",
"alert('" + sb.ToString() + "'); window.location='" + appPath + /Sub1/PageToGoTo.aspx';", true);

请帮助我编写一个不遗漏该月29日和30日的查询

1 个答案:

答案 0 :(得分:2)

尝试:

>DateSerial(Year(Date());Month(Date())-11;1) And <DateSerial(Year(Date());Month(Date())-9;0)

0(零)天将返回上个月的最后日期。