Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想检索特定日期。例如,我的数据库包含 1 月 1 日至 8 月 31 日的数据。我想获取第一个两个月的数据。请建议我为此目的帮助查询,谢谢。
打开查询设计窗口,添加您的表,双击字段将它们添加到网格中。在您添加的日期字段下方的条件行中键入日期。
SQL 查询:select * from table where table.my_date <= #29/02/2012#
将在 2 月 29 日之前过滤日期。在查询窗口中,您可以输入 <=#29/02/2012#