É possível fazer crosstab em uma tabela no PostgreSQL sem ter que definir uma cláusula "as" fornecida por uma tupla (tipo de coluna)?
Exemplo: A tabela criada "t" teria apenas 3 colunas '1', '2' e '3'.
CREATE TABLE IF NOT EXISTS t (
id_ INTEGER NOT NULL,
value1 INT NOT NULL
)
INSERT INTO t (id_, value1) VALUES
(1, 10),
(1, 20),
(2, 10),
(2, 20),
(2, 20),
(3, 30),
(3, 20)