Table data sample:
--------------------------
| key | domain | value   |
--------------------------
| a   | en     | English |
| a   | de     | Germany |
Query which returns result I need:
select * from 
(
    select t1.key,
        (select value from TABLE where t1.key=key AND code='en') en,
        (select value from TABLE where t1.key=key AND code='de') de
    from TABLE t1
) as t2
Data returned from query:
---------------------------
| key | en      | de      |
---------------------------
| a   | English | Germany |
I do not want to list all available domains with:
(select value from TABLE where t1.key=key AND code='*') *
Is it possible to make this query more dynamic in Postgres: automatically add all domain columns that exist in the table?
 
    