selecting distinct pairs of values in SQL

前端 未结 3 1742
借酒劲吻你
借酒劲吻你 2021-01-06 06:23

I have an Access 2010 database which stores IP addresses of source and destination machines. If I have the following entries in my database

|source           |            


        
相关标签:
3条回答
  • 2021-01-06 07:05

    select unique source, destination from YourTable

    or

    select distinct source, destination from YourTable

    or

    select source, destination from YourTable group by source, destination

    0 讨论(0)
  • 2021-01-06 07:06

    Use GROUP BY clause

    SELECT  source, destination 
    FROM SomeTable
    GROUP BY source, destination 
    
    0 讨论(0)
  • 2021-01-06 07:17

    Your question seems to imply two things:

    1. When listing source/destination pairs you only want to see the pairs in one direction, e.g., (A,B) but not (B,A).

    2. The list should omit pairs where the source and destnation are the same, e.g., (D,D)

    In that case the query...

    SELECT DISTINCT source, destination
    FROM
        (
                SELECT source, destination
                FROM SomeTable
            UNION ALL
                SELECT destination, source
                FROM SomeTable
        )
    WHERE source < destination
    

    ...when run against [SomeTable] containing...

    source  destination
    ------  -----------
    A       B          
    B       A          
    A       B          
    C       D          
    D       D          
    E       D          
    

    ...will produce:

    source  destination
    ------  -----------
    A       B          
    C       D          
    D       E          
    
    0 讨论(0)
提交回复
热议问题