Home  >  Article  >  Database  >  在一张表中查询出一个字段相同,一个字段不同的记录

在一张表中查询出一个字段相同,一个字段不同的记录

WBOY
WBOYOriginal
2016-06-07 14:53:232267browse

在一张表中查询出一个字段相同,一个字段不同的记录 比如表A中 字段1 字段2 2 43 3 65 2 68 1 92 www.2cto.com 用sql语句实现查询,查询出 2 43 2 68 这样结果 语句: select distinct x.字段一,x.字段二 from a as x,a as Y where x.字段一=y.字段一 and x.


在一张表中查询出一个字段相同,一个字段不同的记录

 

比如表A中

字段1  字段2

2      43

3      65

2      68

1      92

  www.2cto.com  

用sql语句实现查询,查询出

2      43

2      68

这样结果

 

语句:

select distinct x.字段一,x.字段二

 

from a as x,a as Y

 

where x.字段一=y.字段一 and x.字段二!=y.字段二

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn