Oracle
 sql >> Datenbank >  >> RDS >> Oracle

Gibt es eine SQL-Anweisung, die zwei lange Spalten in mehrere Spaltenpaare aufteilt?

Bonus dazu ist, wenn Sie am Ende mehr Daten haben, werden einfach mehr horizontale Spalten nach Bedarf erstellt, aber niemals mehr als 12 Datenzeilen. Die "In-SQL"-Methode erfordert Codeänderungen, wenn Sie jemals mehr Daten anzeigen müssen.

Haftungsausschluss :Das ist völlig aus dem Stegreif (C#, wie ich es gewohnt bin). Es gibt wahrscheinlich viel bessere Möglichkeiten, dies zu tun (Linq?). Die Logik sollte ziemlich ähnlich sein, aber dies gibt Ihnen die Flexibilität, diese Liste von Daten für andere Zwecke als diese sehr eng fokussierte Anzeige zu verwenden.

DataTable dt = ResultsFromSproc();
DataTable outputDt = new DataTable();

//prebuild 12 rows in outputDt
int iRows = 12;
while(iRows > 0) {
    outputDt.Rows.Add(new DataRow());
    iRows-=1;
}

int outputColumn = 0;
for(int i = 0; i < dt.Rows.Count; i+=1){
    DataRow dr = dt.Rows[i];

    if(i % 12 == 0 && i > 0) { 
        //add two more columns to outputDt
        outputDt.Columns.Add() //Not sure but you might need to give it a name. (outputColumn+2).ToString() should work
        outputDt.Columns.Add() //Not sure but you might need to give it a name. (outputColumn+3).ToString() should work
        outputColumn += 1;
    }
    outputDt.Rows[i%12][outputColumn] = dr[0];
    outputDt.Rows[i%12][outputColumn + 1] = dr[1];
}
//Step2: Bind to outputDt. Step 3: Profit!

ALTERNATIVE Version :Für die Anforderung, dass val1 ==48 in Zelle 48 kommt (siehe Kommentare)

DataTable dt = ResultsFromSproc();
DataTable outputDt = new DataTable();

//prebuild 12 rows in outputDt
int iRows = 12;
while(iRows > 0) {
    outputDt.Rows.Add(new DataRow());
    iRows-=1;
}

int outputColumn = 0;
int iMaxCell = (int)dt.Select("MAX(Val1)")[0][0];
//ASSUMING YOU HAVE ALREADY DONE AN ORDER BY Val1 in SQL (if not you need to sort it here first)
for(int i = 0; i < iMaxCell; i+=1){
    DataRow dr = dt.Rows[i];

    if(i % 12 == 0 && i > 0) { 
        //add two more columns to outputDt
        outputDt.Columns.Add() //Not sure but you might need to give it a name. (outputColumn+2).ToString() should work
        outputDt.Columns.Add() //Not sure but you might need to give it a name. (outputColumn+3).ToString() should work
        outputColumn += 2;
    }
    //compare to i+1 if your data starts at 1
    if((int)dr[0] == (i+1)){
        outputDt.Rows[i%12][outputColumn] = dr[0];
        outputDt.Rows[i%12][outputColumn + 1] = dr[1];
    }
}
//Step2: Bind to outputDt. Step 3: Profit!