select * from 表 a,表 b where a.字段1=b.字段1 and a.字段2<>b.字段2是一个表啊,a,b是别名select * from 学生表 a,学生表 b where a.字段1=b.字段1 and a.字段2<>b.字段2这样可以理解了么
select * from 表名 as A,表名 as B where A.字段1 = B.字段1 and A.字段2 != B.字段2
好