1.表t1,t2中存在相同的字段:姓名 varchar(10),则写出表t1中表t2中没有的属性值操作的SQL语句
select 姓名 from t1 except select 姓名 from t2
2.不使用临时空间,直接交换a,b的值
a=a+b;
b=a-b;
a=a-b;