| From: | "A(dot) Kretschmer" <andreas(dot)kretschmer(at)schollglas(dot)com> | 
|---|---|
| To: | pgsql-general(at)postgresql(dot)org | 
| Subject: | Re: generic way to retrieve array as rowset | 
| Date: | 2006-01-03 12:02:23 | 
| Message-ID: | 20060103120223.GC9478@webserv.wug-glas.de | 
| Views: | Whole Thread | Raw Message | Download mbox | Resend email | 
| Thread: | |
| Lists: | pgsql-general | 
am  03.01.2006, um 12:37:51 +0100 mailte SunWuKung folgendes:
> When storing data in an array, like this
> 
> id	array
> 1, 	{1,2}
> 2, 	{10,20}
> 3, 	{100,200}
Forever 2 Elements in the array? Then:
test=# select * from t1;
 id |    foo
----+-----------
  1 | {1,2}
  2 | {10,20}
  3 | {100,200}
(3 rows)
test=# select id, array_upper(foo,1), foo[idx.i] from t1, generate_series (1, 2) idx(i);
 id | array_upper | foo
----+-------------+-----
  1 |           2 |   1
  1 |           2 |   2
  2 |           2 |  10
  2 |           2 |  20
  3 |           2 | 100
  3 |           2 | 200
(6 rows)
If not: http://www.varlena.com/GeneralBits/105.php
Read the chapter 'Querying and Flattening Array Columns'.
HTH, Andreas
-- 
Andreas Kretschmer    (Kontakt: siehe Header)
Heynitz:  035242/47212,      D1: 0160/7141639
GnuPG-ID 0x3FFF606C http://wwwkeys.de.pgp.net
 ===    Schollglas Unternehmensgruppe    === 
| From | Date | Subject | |
|---|---|---|---|
| Next Message | SunWuKung | 2006-01-03 12:24:54 | Re: generic way to retrieve array as rowset | 
| Previous Message | SunWuKung | 2006-01-03 11:37:51 | generic way to retrieve array as rowset |