假设我有一个包含Project_type
, Project_No
,OS_Platform
列的表。这里我有limited Project_type
s和limited OS_Platform
s。Project_type
我想要一个数据库视图,它在和之间产生一个矩阵OS_Platform
。
MY_TABLE :
Project_Type Project_No OS_Platform
Drivers 345 Linux
WebService 453 Windows
Drivers 034 Windows
Drivers 953 Solaris
DesktopApp 840 Windows
WebService 882 Solaris
现在我有Project_type
和OS_Platform
作为选定的列。我想要这两列具有不同行和列名的矩阵视图。
Project_Type Linux Windows Solaris
WebService null true true
Drivers true true true
DesktopApp null true null
谁能告诉我是否可能。这怎么可能?