From: | Michael Graham <mgraham(at)bloxx(dot)com> |
---|---|
To: | pgsql-general(at)postgresql(dot)org |
Subject: | unnest and string_to_array on two columns |
Date: | 2011-10-25 08:36:18 |
Message-ID: | 1319531778.29338.65.camel@brutus |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
Hi all,
I'm trying to migrate an old (and sucky) schema to a new one and I'm
having some difficulties coming up with a sane select.
I have basically id, a, and b where a and b contain a list of flags like
id | a | b |
--------------------
1 | abc | abcdef |
and what to convert this to multiple ids with single flags, like:
id | a | b |
------------------
1 | a | a |
1 | b | b |
1 | c | c |
1 | NULL | d |
1 | NULL | e |
1 | NULL | f |
My first attempt was
SELECT id, unnest(string_to_array(a,NULL)),
unnest(string_to_array(b,NULL)) FROM foo;
But this causes the shorter string to be repeated until it is the same
length as the shorter string. In the end I have managed to get the
behaviour that I want but the select is horrible:
SELECT COALESCE(aa.id,bb.id) AS id,
aa.unnest AS aaaaa,
bb.unnest AS bbbbb FROM
(
SELECT *, row_number() OVER() FROM
(
SELECT id,unnest(string_to_array(a,NULL)) FROM foo
) AS a
) AS aa
FULL JOIN
(
SELECT *, row_number() OVER() FROM
(
SELECT id,unnest(string_to_array(b,NULL)) FROM foo
) AS b
) AS bb
ON aa.row_number=bb.row_number AND aa.id=bb.id;
So I was wondering if anyone had any better solutions.
Thanks,
--
Michael Graham <mgraham(at)bloxx(dot)com>
From | Date | Subject | |
---|---|---|---|
Next Message | Albe Laurenz | 2011-10-25 09:12:18 | Re: Help with copy (loading TSV file into table as text) |
Previous Message | Raghavendra | 2011-10-25 07:41:26 | Re: Primary key Index Error |