当然在这种情况下使用数据库来操作是相当简单的,

create table temp_tab003 as 
select distinct a.pno,a.pnanem,a.anumber,a.ananme,b.q2009,b.to2009
 from temp_tab001 a,temp_tab002 b
 where a.anumber=b.item
 union all
 select a.pno,a.pnanem,a.anumber,a.ananme,a.q2009,a.to2009
 from temp_tab001 a
 where not exists (select item from temp_tab002 where a.anumber=item)

不过如果没有数据库,那么应该如何操作呢?

使用函数

VLOOKUP(C2,Sheet2!$C$2:$E$66,3,0)

C2:表示第一个sheet中需要关联的第一个字段

Sheet2!:表示在第二个sheet中进行操作

$C$2:表示在第二个sheet中操作区域的左顶点(需要进行关联的那一行)

$E$66:表示在第二个sheet中操作区域的右底点

3:表示从第二个sheet的C列往后推3列

0:含义不详?