【译文】在一个日期范围内匹配记录
时 间: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)
- 最精简的组合框行来源数据快速输...(10.25)
- Access仿平台的多值选择器...(10.24)
- 【Access日期区间段查询】...(10.22)
- 【Access源码示例】VBA...(10.12)
- Access累乘示例,Acce...(10.09)
- 数值8.88,把整数8去掉,转...(10.08)
- 【Access自定义函数】一个...(09.30)
- 【Access选项卡示例】Ac...(09.09)
学习心得
最新文章
- Access快速开发平台企业版--...(11.18)
- 不会用多表联合查询,多表查询没结果...(11.16)
- 【案例分享】主键字段值含有不间断空...(11.16)
- Access快速开发平台--后台D...(11.14)
- 微软Access邀测新Monaco...(11.12)
- Access列表框左右互选、列表框...(11.11)
- 高效率在导入数据前删除记录(11.10)
- Access报价单转订单示例代码(11.08)
- Access系统自带的日期选择器不...(11.08)
- 分享一下Access工程中的acw...(11.07)