有两个表1和列2:
Id: unique ; timestamp:long; money:double
表1和表2中缺少某些记录。
问题:尝试将两个表与table1的时间戳合并在一起,如果记录仅在表2中,则调整时间戳,使用表1和表2之间的平均时差。
我该如何解决这个问题?
答案 0 :(得分:3)
您没有说要是要合并到现有表中还是要合并到新表中。但无论哪种方式,它都不是“非平凡的”。
如果要将其中一个现有表中的数据集插入另一个表中,请使用MERGE(问题中的线索)。
SQL> select * from t1;
ID TS MONEY
---------- --------- ----------
1 25-JUL-09 123
2 04-AUG-09 67
SQL> select * from t2;
ID TS MONEY
---------- --------- ----------
2 08-AUG-09 67
3 10-AUG-09 787
SQL> merge into t1
2 using t2
3 on ( t1.id = t2.id )
4 when matched then
5 update set ts = ts + ((t2.ts - t1.ts) / 2)
6 when not matched then
7 insert
8 (id, ts, money)
9 values
10 (t2.id, t2.ts, t2.money)
11 /
2 rows merged.
SQL> select * from t1
2 /
ID TS MONEY
---------- --------- ----------
1 25-JUL-09 123
2 10-AUG-09 67
3 10-AUG-09 787
SQL>
如果要将两组数据插入新表中,则可以这样做:
SQL> insert all
2 when t1_id = t2_id then
3 into t3 values (t1_id, t1_ts + ((t2_ts - t1_ts)/2), t1_money)
4 when t1_id is not null and t2_id is null then
5 into t3 values (t1_id, t1_ts, t1_money)
6 when t1_id is null and t2_id is not null then
7 into t3 values (t2_id, t2_ts, t2_money)
8 select t1.id as t1_id
9 , t1.ts as t1_ts
10 , t1.money as t1_money
11 , t2.id as t2_id
12 , t2.ts as t2_ts
13 , t2.money as t2_money
14 from t1 full outer join t2 on t1.id = t2.id
15 /
SQL> select * from t3
2 /
ID TS MONEY
---------- --------- ----------
2 06-AUG-09 67
1 25-JUL-09 123
3 10-AUG-09 787
SQL>
答案 1 :(得分:1)
您使用什么数据库作为DB:s支持不同的合并命令。你也可以使用一些存储过程吗?