sql >> Database >  >> RDS >> Oracle

SQL Alle mogelijke Round Robin-combinaties tussen twee tabellen

Hier zijn twee oplossingen voor het probleem

SELECT  t1.Name + ',' +  t2.Name AS NamesCombination
FROM Person t1
INNER JOIN Person t2
ON t1.Name < t2.Name

OF (Oracle 11i R2+)

WITH NamesCombination AS 
( 
    SELECT  1 AS Cntr
            ,Name 
            , CAST(Name AS VARCHAR(MAX))AS NamesCombinations
    FROM Person 
    UNION ALL 
    SELECT  
        nc.Cntr+1
        ,p.Name 
        ,nc.NamesCombinations + ',' +  CAST(p.Name AS VARCHAR(MAX))                      
    FROM Person AS p JOIN NamesCombination nc ON p.Name < nc.Name
    WHERE nc.Cntr < 2  
)
SELECT NamesCombinations
FROM NamesCombination
WHERE Cntr  = 2 



  1. Numerieke functies in Oracle (volledige lijst)

  2. Sets uit een enkele tabel, gegroepeerd op een kolom

  3. Wat is het verschil tussen MySQLdb, mysqlclient en MySQL-connector/Python?

  4. Twee mysql_fetch_array-instructies in