3

我有一个包含数据的表

col1  col2  
a      b  
b      a  
c      d
d      c
a      d 
a      c

对我来说,第 1 行和第 2 行是重复的,因为a, b&b, a是相同的。第 3 行和第 4 行也是如此。

我需要一个 SQL(不是 PL/SQL)查询,它的输出为

col1   col2
a       b
c       d
a       d
a       c
4

2 回答 2

8
select distinct least(col1, col2), greatest(col1, col2)
from your_table

编辑:对于那些使用支持标准 SQL 函数的 DBMS 的人,least可以greatest使用 CASE 表达式来模拟:

select distinct 
       case 
         when col1 < col2 then col1
         else col2
       end as least_col, 
       case 
         when col1 > col2 then col1
         else col2
        end as greatest_col 
from your_table
于 2012-07-26T10:51:13.660 回答
0

试试这个:

CREATE TABLE t_1(col1 varchar(10),col2   varchar(10))

INSERT INTO t_1
VALUES ('a','b'),  
('b','a'),  
('c','d'),
('d','c'),
('a','d'),
('a','c')

;with CTE as (select ROW_NUMBER() over (order by (select 0)) as id,col1,col2,col1+col2 as col3 from t_1)
,CTE1 as (
select id,col1,col2,col3 from CTE where id=1
union all
select c.id,c.col1,c.col2,CASE when c.col3=REVERSE(c1.col3) then null else c.col3 end from CTE c inner join CTE1 c1
on c.id-1=c1.id

)

select col1,col2 from CTE1 where col3 is not null
于 2012-07-26T11:03:25.167 回答