そのように構造化されたテーブルの場合:
"Object Attribute" Table - Links objects with all of their attributes and values;
Object ID Attribute ID Attribute String Value ...
1337 123 Example Object Title
1337 124 Example Object Type
1337 125 Example Object Description
1337 126 Example Object Author
0001 123 (null)
0001 124 SomeType
0001 125 This is an example record
0001 126 Jiman
0002 123 Bar
0002 124 BarType
0002 125 This is another
0002 126 Jiman
編集: 属性 ID には次のマッピングがあります。
Attribute ID Attribute Name
123 Title
124 Type
125 Description
126 Author
Title フィールドが NULL の転置されたデータ セットを返す Oracle クエリを作成するにはどうすればよいですか?
出力例:
ID Title Type Description Author
0001 (null) FooType This is an example... Jiman
PIVOT を使用して非集計値 (つまり、これらの文字列属性) を転置できますか?