Ciao.
Si, l'oggetto della richiesta è un pò misterioso; cerco di spiegarmi meglio.
Ho due tabelle:
Tabella COMPUTERS
computerid,computername

esempio:
1, computer1
2, computer2

Tabella COMPUTERSPROPERTIES
computerid,propertyname,propertyvalue

esempio
1, harddisk, 80000
1, ram, 4096
1, ip, 192.168.0.1
2, harddisk, 320000
2, ram, 2048
2, ip, 192.168.0.2

Dovrei ottenere con una singola query un report tipo questo (ma l'avrete già immaginato)

computer1, 80000, 4096, 192.168.0.1
computer2, 320000, 2048, 192.168.0.2

Mi aiutate a costruire la query ?

Grazie.