问题
I want to show the given records in the following table into the specific format which is shown below in the table.
Creating table: Test_1
CREATE TABLE Test_1
(
ColumnA varchar,
ColumnB varchar
);
Insertion of records:
INSERT INTO Test_1 values('A101','B101'),('A102','B102'),
('A103','B103'),('A104','B104'),
('A105','B105'),('A106','B106'),
('A107','B107'),('A108','B108'),
('A109','B109'),('A201','B201');
I want to show the result like this:
Expected Result:
ColumnA ColumnX
---------------------------------------------------------------------------------------------------------------------------------------
A101 "B101" = 1, "B102" = 0, "B103" = 0, "B104" = 0, "B105" = 0, "B106" = 0, "B107" = 0, "B108" = 0, "B109" = 0, "B201" = 0
A102 "B101" = 0, "B102" = 1, "B103" = 0, "B104" = 0, "B105" = 0, "B106" = 0, "B107" = 0, "B108" = 0, "B109" = 0, "B201" = 0
A103 "B101" = 0, "B102" = 0, "B103" = 1, "B104" = 0, "B105" = 0, "B106" = 0, "B107" = 0, "B108" = 0, "B109" = 0, "B201" = 0
A104 "B101" = 0, "B102" = 0, "B103" = 0, "B104" = 1, "B105" = 0, "B106" = 0, "B107" = 0, "B108" = 0, "B109" = 0, "B201" = 0
A105 "B101" = 0, "B102" = 0, "B103" = 0, "B104" = 0, "B105" = 1, "B106" = 0, "B107" = 0, "B108" = 0, "B109" = 0, "B201" = 0
A106 "B101" = 0, "B102" = 0, "B103" = 0, "B104" = 0, "B105" = 0, "B106" = 1, "B107" = 0, "B108" = 0, "B109" = 0, "B201" = 0
A107 "B101" = 0, "B102" = 0, "B103" = 0, "B104" = 0, "B105" = 0, "B106" = 0, "B107" = 1, "B108" = 0, "B109" = 0, "B201" = 0
A108 "B101" = 0, "B102" = 0, "B103" = 0, "B104" = 0, "B105" = 0, "B106" = 0, "B107" = 0, "B108" = 1, "B109" = 0, "B201" = 0
A109 "B101" = 0, "B102" = 0, "B103" = 0, "B104" = 0, "B105" = 0, "B106" = 0, "B107" = 0, "B108" = 0, "B109" = 1, "B201" = 0
A201 "B101" = 0, "B102" = 0, "B103" = 0, "B104" = 0, "B105" = 0, "B106" = 0, "B107" = 0, "B108" = 0, "B109" = 0, "B201" = 1
For which I am using the following script which does my half job:
SELECT columnA, array_agg(ColumnB) AS ColumnX
FROM (
SELECT ColumnA, right(ColumnA, -1)::int AS sortb
, CASE WHEN m.ColumnB IS NULL THEN 0 ELSE 1 END AS ColumnB
FROM (SELECT DISTINCT ColumnA FROM Test_1) b
CROSS JOIN (SELECT DISTINCT ColumnB FROM Test_1) a
LEFT JOIN Test_1 m USING (ColumnA, ColumnB)
ORDER BY sortb, right(ColumnB, -1)::int
) sub
GROUP BY 1, sortb
ORDER BY sortb;
The above script gives me the following result:
Getting result:
ColumnA ColumnX
---------------------------------------
A101 {1,0,0,0,0,0,0,0,0,0}
A102 {0,1,0,0,0,0,0,0,0,0}
A103 {0,0,1,0,0,0,0,0,0,0}
A104 {0,0,0,1,0,0,0,0,0,0}
A105 {0,0,0,0,1,0,0,0,0,0}
A106 {0,0,0,0,0,1,0,0,0,0}
A107 {0,0,0,0,0,0,1,0,0,0}
A108 {0,0,0,0,0,0,0,1,0,0}
A109 {0,0,0,0,0,0,0,0,1,0}
A201 {0,0,0,0,0,0,0,0,0,1}
Question: How to add columnB
values infront of values of getting in ColumnX
?
回答1:
It's just a simple modification.
Also added the actual count as requested in your comment.
SELECT columnA, array_agg(ColumnB) AS ColumnX
FROM (
SELECT ColumnA, right(ColumnA, -1)::int AS sorta
, '"' || ColumnB || '" = ' || count(m.ColumnB) AS ColumnB
FROM (SELECT DISTINCT ColumnA FROM Test_1) b
CROSS JOIN (SELECT DISTINCT ColumnB FROM Test_1) a
LEFT JOIN Test_1 m USING (ColumnA, ColumnB)
GROUP BY ColumnA, ColumnB
ORDER BY sorta, right(ColumnB, -1)::int
) sub
GROUP BY 1, sorta
ORDER BY sorta;
SQL Fiddle.
One array
As per comment:
SELECT ARRAY[columnA] || array_agg(ColumnB) AS ColumnX
FROM (
SELECT ColumnA, right(ColumnA, -1)::int AS sorta
, '"' || ColumnB || '" = ' || count(m.ColumnB) AS ColumnB
FROM (SELECT DISTINCT ColumnA FROM Test_1) b
CROSS JOIN (SELECT DISTINCT ColumnB FROM Test_1) a
LEFT JOIN Test_1 m USING (ColumnA, ColumnB)
GROUP BY ColumnA, ColumnB
ORDER BY right(ColumnB, -1)::int, sorta
) sub
GROUP BY columnA, sorta
ORDER BY sorta;
回答2:
SELECT columnA, array_agg(ColumnB) AS ColumnX
FROM (
SELECT ColumnA, right(ColumnA, -1)::int AS sortb
, CASE WHEN m.ColumnB IS NULL THEN NULL ELSE m.ColumnB||'='||( count(m.ColumnB)) END AS ColumnB
FROM (SELECT DISTINCT ColumnA FROM Test_1) b
CROSS JOIN (SELECT DISTINCT ColumnB FROM Test_1) a
LEFT JOIN Test_1 m USING (ColumnA, ColumnB)
group by ColumnA,m.ColumnB,ColumnB
ORDER BY sortb, right(ColumnB, -1)::int
) sub
GROUP BY 1, sortb
ORDER BY sortb;
来源:https://stackoverflow.com/questions/29247565/postgresql-9-3-display-result-in-specific-format-using-array-agg-function