- 论坛徽章:
- 0
|
正好我这里有个例子,你看看吧
tmp1和tmp2结构相同,register.txt是包含重复数据的文件
echo "建临时表1\n"
db2 "create table tmp1 \
(customer_id char(20),register_amount decimal(16,2))"
echo "建临时表2\n"
db2 "create table tmp2 \
(customer_id char(20),register_amount decimal(16,2))"
echo "将数据文件装入临时表1\n"
db2 "import from ${filepath}/register.txt of del \
modified by coldel| insert into tmp1"
echo "将重复数据插入临时表2\n"
db2 "insert into tmp2 \
select * from tmp1 where \
customer_id in (select customer_id from \
tmp1 group by customer_id having count(*)>1)"
echo "删除临时表1中的重复数据\n"
db2 "delete from tmp1 \
where customer_id in \
(select customer_id from tmp1 \
group by customer_id having count(*)>1)"
echo "取重复数据中的1条记录插入临时表1\n"
db2 "insert into tmp1 \
select customer_id,max(register_amount) \
from tmp2 group by \
customer_id"
[ 本帖最后由 silverdust 于 2006-6-2 13:06 编辑 ] |
|