--在SQL2000数据库上测试
create table aa(姓名 varchar(10),职称 varchar(10))
insert into aa
select '张三','老师' union all
select '李四','教授' union all
select '赵七','教授' union all
select '王五','职工'
create table aa1(姓名 varchar(10),职称 varchar(10),班级 varchar(10))
insert into aa1
select '张三','','高二' union all
select '李四','','高三' union all
select '王五','','高一' union all
select '陈六','','高一'
--更新前
select * from aa
select * from aa1
--更新
update aa1 set aa1.职称=aa.职称 from aa where aa1.姓名=aa.姓名
--更新后
select * from aa1
--删除表
drop table aa
drop table aa1
图片附件: 游客没有浏览图片的权限,请
登录 或
注册