从 Access 表中查询日期/时间(上个月)
我正在使用 Visual Studio 2008 中的查询生成器从 Access mdb (2003) 中提取数据,但我无法使其与日期时间字段一起使用。当我使用第三方查询应用程序运行它时,我工作得很好,但是当我尝试将它实现到 Visual Studio 中时,我无法做到这一点。
提取上个月数据的正确方法是什么?
这就是我所拥有的:
SELECT
[Datos].[ID], [Datos].[E-mail Address], [Datos].[ZIP/Postal Code], [Datos].[Store], [Datos].[date], [Datos].[gender], [Datos].[age]
FROM
[Datos]
WHERE
([Datos].[date] =<|Last month|>)
感谢任何帮助。
谢谢
I am using the query builder from Visual Studio 2008 to extract data from an Access mdb ( 2003), but I can't make it to work with a datetime field. When I run it with a third party query app I have works fine, but when I try to implement it into visual studio I can't do it.
What is the correct way to extract last month data?
This is what I have:
SELECT
[Datos].[ID], [Datos].[E-mail Address], [Datos].[ZIP/Postal Code], [Datos].[Store], [Datos].[date], [Datos].[gender], [Datos].[age]
FROM
[Datos]
WHERE
([Datos].[date] =<|Last month|>)
Any help is appreciated.
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你想硬连线它:
where ([Datos].[date] <= #12/31/2009#)
如果你想让它灵活,这(可能有用):
where ([Datos].[date] < ;= datediff('d',-day(日期()),日期()))
If you want to hardwire it:
where ([Datos].[date] <= #12/31/2009#)
if you want to make it flexible this (might work):
where ([Datos].[date] <= datediff('d',-day(date()),date()))