Meine Tabellenstruktur wieSQL Pivot für mehrere Spalten in einer Zeile
----------------------------------------------
AccountNo | Ben1 | Ben2 | Ben3 | Ben4 | Type |
----------------------------------------------
A1234 | xyz1 | xyz2 | xyz3 | xyz4 | P |
A1005 | pqr1 | pqr2 | pqr3 | pqr4 | C |
----------------------------------------------
Ich brauche obigen Tabelle zu
-------------------------
AccountNo | Name | Type |
-------------------------
A1234 |xyz1 | P |
A1234 |xyz2 | P |
A1234 |xyz3 | P |
A1234 |xyz4 | P |
A1005 |pqr1 | C |
A1005 |pqr2 | C |
A1005 |pqr3 | C |
A1005 |pqr4 | C |
-------------------------
durch eine SQL-Abfrage zu schwenken, wie ich oben Ergebnis
erhalten schwenken
haben Sie versucht, die Suche, es ist eine Pracht ty allgemeine Frage: http://stackoverflow.com/search?q=%5Bsql-server%5D+pivot+columns+rows – Tanner
Auch ich habe eine Ben1Type, Ben2Type, Ben3Type und Ben4TYpe Spalte entsprechend. –
Ich habe Antwort von der URL: http://mangalpardeshi.blogspot.in/2009/04/unpivot-multiple-columns.html –