两表中,保留不 相同记录, 主要是实现  删除T2表 与T1相同记录两个相同的表结构create table T1(编号 char(4),姓名 char(8),性别 char(2))
select '001','李明','男' union allselect '003','王伟','男'    union allselect '004','张梅','女'    union allselect '006','韦宇','男'    union allselect '009','何丽','女'
create table T2(编号 char(4),姓名 char(8),性别 char(2))insert into T2(编号,姓名,性别)select '002','方秀丽','女' union allselect '007','韦宇','男'    union allselect '004','江静','女'    union allselect '006','苏立','男'    union allselect '009','何丽','女'我写的: delete from T2 where exists(select *from T1 a,T2 b where b.编号=a.编号)
结果把表T2记录全删除了?