0

我可以在同一个查询中进行插入和更新吗?

之前

MemberID |   SubsID |   StartDate  |  EndDate
------------------------------------------------
1001     |   10     |   2012-12-21 |  2012-12-31 
2002     |   10     |   2012-12-22 |   

之后

MemberID |   SubsID |   StartDate  |  EndDate
------------------------------------------------
1001     |   10     |   2012-12-21 |  2012-12-31 
2002     |   10     |   2012-12-22 |  2012-04-13 
2002     |   10     |   2012-04-13 |   

获取行

select * from MemberSubs 
where SubsID = 10 and EndDate is null;

插入新行

insert into 
  MemberSubs(MemberID, SubsID, Price, StartDate)
select 
  MemberID, SubsID, Price, Current Date 
from 
  MemberSubs 
where 
  SubsID = 10
  and
  EndDate is null

更新旧行

update MemberSubs 
set 
  EndDate = current date
where 
  SubsID = 10
  and
  EndDate is null
  and
  StartDate < Current Date

是否可以在一个查询中实现这一点(不使用存储过程或触发器等)

谢谢你。

4

1 回答 1

0

你有两个选择:

  1. 使用触发器(查看谷歌上的“DB2 9.5 Cookbook”,第 333 页。有一个将触发器与历史数据一起使用的示例)

  2. 升级到 DB2 版本 10 并使用系统时间通过时间旅行查询来查询历史数据。

于 2013-04-19T17:04:09.360 回答