Select x,id,name,sex,age,major,(yuwen+shuxue+yingyu) "总成绩" from tab1 x,tab2 y where x.id=y.id;
select 表1.id, 表1.name, 表2.yuwen+表2.shuxue+表2.yingyu from 表1,表2 where 表1.id=表2.id
先要提供你的数据库结构啊