应该用:
select * from a,b where a.tel = b.tel
或
select * from a inner join b on a.tel = b.tel
或
select * from b inner join b on b.tel = a.tel
假设是学生退出登录时在t1表删除数据假设id各为两个表的主键
select * from t2 where id not in (select id from t1)
结果集是t2表中id不在t1表的数据
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)