日期:2014-05-16  浏览次数:20521 次

在一张表中,查询出一个字段相同,一个字段不同的记录
比如表A中
字段1  字段2
2      43
3      65
2      68
1      92
用sql语句实现查询,查询出
2      43
2      68
这样结果


语句:

select distinct x.字段一,x.字段二
from a as x,a as Y
where x.字段一=y.字段一 and x.字段二!=y.字段二

1楼SmithLiu328昨天 11:25
pingback from:http://blog.csdn.net/smithliu328/article/details/8051482