oracle:
insert all
when 条件1 then into 目的表1名称(目的表1字段名) values(对应目的表1字段的源表字段名)
when 条件2 then into 目的表2名称(目的表1字段名) values(对应目的表2字段的源表字段名)
select 源表字段 from 源表;
[color=red]将源表的数据根据不同的条件插入到不同的目的表中.
通过这种方法可进行横表变纵表的转换.[/color]
insert all
when 条件1 then into 目的表1名称(目的表1字段名) values(对应目的表1字段的源表字段名)
when 条件2 then into 目的表2名称(目的表1字段名) values(对应目的表2字段的源表字段名)
select 源表字段 from 源表;
[color=red]将源表的数据根据不同的条件插入到不同的目的表中.
通过这种方法可进行横表变纵表的转换.[/color]