如何创建一个sql select语句,其中select列名是另一个表的行中的值(我使用的是postgresql)?我有一个包含语言代码的语言表:
language
========
id code name
-------------------
1 en English
2 fr French
3 it Italian
country
=======
id en fr it other_columns
------------------------------------
1 ...
2 ...
我想从国家/地区表中选择id和所有语言列,它们列在语言表中。类似的东西:
SELECT id, (SELECT code FROM language) FROM country
所以我有效地结束了:
SELECT id, en, fr, it from country
谢谢!
答案 0 :(得分:3)
这被称为“枢轴”或“交叉表”,并且SQL是众所周知的坏事。 PostgreSQL提供了一个有用的扩展,虽然使用起来不太好看 - 看看crosstab
function in the tablefunc
extension。
搜索crosstab或pivot标记以及postgresql标记会发现更多信息。例如:
答案 1 :(得分:0)
这是部分答案。以下行为您提供了您正在寻找的SQL。也许PL / pgSQL的EXECUTE实际上可以为你运行它。
SELECT 'SELECT id, '
|| (SELECT array_to_string(array_agg(code),', ') FROM LANGUAGE)
|| 'FROM country';
一些测试数据:
CREATE TABLE country (id integer, en text, fr text, it text, es text, de text);
INSERT INTO country (id, en, fr, it, es, de)
VALUES (1, 'Hello', 'Bonjour', 'Buon giorno', 'Buenas dias', 'Guten Tag');
CREATE TABLE language (id integer, code text, name text);
INSERT INTO language (id, code, name)
VALUES (1, 'en', 'English'), (2, 'fr', 'French'), (3, 'it', 'Italian');