【译文】在一个日期范围内匹配记录
时 间:2012-04-21 15:08:52
作 者:周芳 ID:24526 城市:上海
摘 要:将一个表中的记录和另一个有日期范围的表相匹配
正 文:
原作者:Juan Soto 翻译:周芳
一天,我叫Ben帮我解决一个棘手的问题,我需要将一个表中的记录和另一个有日期范围的表相匹配。这是我要更新的表,表名为tblWidgets.
WidgetID DateProduced WidgetWeekID
------- ------------ ------------
1 1/2/11
2 1/16/11
3 1/31/11
WidgetWeekID是另一个表名为tblWidgetWeeks中的字段:
WidgetWeekID StartDate EndDate
------------ -------- -------
1 12/29/10 1/5/11
2 1/6/11 1/12/11
3 1/13/11 1/20/11
4 1/21/11 1/28/11
5 1/29/11 2/5/11
我需要一个查询来找到StartDate和EndDate之间的DateProduced ,然后用正确的编号更新WidgetWeekID。这是他想出的解决方案:
Update tblWidgets AS w
INNER JOIN tblWidgetWeeks AS wwk
ON w.[DateProduced] >= wwk.StartDate AND w.[DateProduced ] <= wwk.EndDate
SET w.WidgetWeekID = [wwk].[WidgetWeekID];
Ben用连接日期范围来解决的方法出色在哪呢,其实它是一个远比使用代码更好的解决办法。运行查询后显示是这样的:
WidgetID DateProduced WidgetWeekID
------- ------------ ------------
1 1/2/11 1
2 1/16/11 3
3 1/31/11 5
你还有什么其他不寻常的想法可以加入吗?下面请赐教。谢谢Ben。
另附示例:
【原文】
Matching records using a date range
The other day I asked Ben to help me with a thorny problem, I needed to match records in one table with records in another table using a date range. Here’s the table I needed to update, called tblWidgets:
WidgetID DateProduced WidgetWeekID
------- ------------ -----------
1 1/2/11
2 1/16/11
3 1/31/11
WidgetWeekID comes from another table called tblWidgetWeeks:
WidgetWeekID StartDate EndDate
------------ -------- -------
1 12/29/10 1/5/11
2 1/6/11 1/12/11
3 1/13/11 1/20/11
4 1/21/11 1/28/11
5 1/29/11 2/5/11
I needed a query that would find DateProduced between StartDate and EndDate and update WidgetWeekID with the right number. Here’s the solution he came up with:
Update tblWidgets AS w
INNER JOIN tblWidgetWeeks AS wwk
ON w.[DateProduced] >= wwk.StartDate AND w.[DateProduced ] <= wwk.EndDate
SET w.WidgetWeekID = [wwk].[WidgetWeekID];
What's brilliant about Ben's solution is the join on the date range, a far better solution than using code. Once I ran the query the destination table looks like this:
WidgetID DateProduced WidgetWeekID
------- ------------ ------------
1 1/2/11 1
2 1/16/11 3
3 1/31/11 5
What other unusual joins have you done? Please comment below. Thanks Ben!
相关类似示例:
Access软件网QQ交流群 (群号:54525238) Access源码网店
常见问答:
技术分类:
源码示例
- 【源码QQ群号19834647...(12.17)
- 【Access高效办公】上一年...(10.30)
- Access制作的RGB转CM...(09.22)
- Access制作的RGB调色板...(09.15)
- Access制作的快速车牌输入...(09.13)
- 【Access高效办公】统计当...(06.30)
- 【Access高效办公】用复选...(06.24)
- 根据变化的日期来自动编号的示例...(06.20)
- 【Access高效办公】按日期...(06.12)
- 合并列数据到一个文本框的示例;...(05.06)
学习心得
最新文章
- 【Access高效办公】上一年度累...(10.30)
- Access做的一个《中华经典论语...(10.25)
- Access快速开发平台--加载事...(10.20)
- 【Access有效性规则示例】两种...(10.10)
- EXCEL表格扫描枪数据录入智能处...(10.09)
- Access快速开发平台--多行文...(09.28)
- 关于从Excel导入长文本数据到A...(09.24)
- Access制作的RGB转CMYK...(09.22)
- 关于重装系统后Access开发的软...(09.17)
- Access制作的RGB调色板示例(09.15)

点击下载此附件

.gif)
