Let's say that we have a table like this:
entity_id attribute_name attribute_value
----------------------------------------
0 server alpha
1 server beta
0 priority 1
1 priority 2
1 comment some comment
2 server gamma
What would be the query, for PostgreSQL, that would give these results:
server alpha beta
priority 1 2
Note:
- we assume that we want to compare entities with id 0 and 1 only.
- if an attribute is not present for both entities it can be ignored
server,alphaandbetain the query results header captions, or the first row of data? – LittleBobbyTables Aug 13 '12 at 16:13SELECT columns... FROM tablequery, then in your application code display the stuff you want side-by-side side-by-side. – Dan Grossman Aug 13 '12 at 16:26