Krydstabulatorer eller pivottabeller er svaret. Derfra kan du VÆLG FRA ... INSERT INTO ... eller oprette en VIEW fra den enkelte SELECT.
Noget som:
SELECT country,
MAX( IF( key='President', value, NULL ) ) AS President,
MAX( IF( key='Currency', value, NULL ) ) AS Currency,
...
FROM table
GROUP BY country;
For mere info:http://dev.mysql.com/tech -resources/articles/wizard/index.html