访问问题:如何显示两个日期之间的记录

发布于 2024-11-08 10:51:36 字数 73 浏览 0 评论 0原文

我的 Access 表单中有两个名为 CombDate 和 CombDat1 的组合框。现在我想显示两个日期之间的记录。我该怎么做?

I have two combobox in my Access form named CombDate and CombDat1. Now I want to show records between two dates. How can I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

万劫不复 2024-11-15 10:51:36

使用 VBA,您可以从两个日期组合框中检索值并将它们存储在 date1 和 date2 中,然后您可以使用 VBA 和 DAO 打开记录集,使用以下 SQL:

"SELECT field1, field2 " & _ 
"FROM table " & _ 
"WHERE datefield > " & date1 & " AND datefield < " & date2 & ";"

更多详细信息将有助于阐明解决方案,但这是基本的过程。

Using VBA, you can retrieve the values from the two date combo boxes and store them in date1 and date2, then you can open a recordset using VBA and DAO, with the following SQL:

"SELECT field1, field2 " & _ 
"FROM table " & _ 
"WHERE datefield > " & date1 & " AND datefield < " & date2 & ";"

More details would help clarify the solution, but that's the basic process.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文