query an array...

Поиск
Список
Период
Сортировка
От Heiko Wilms
Тема query an array...
Дата
Msg-id 37426096.158674B9@stud.fh-hannover.de
обсуждение исходный текст
Ответы Re: [SQL] query an array...
Список pgsql-sql
> Hi,
>
> I stucked upon the following situation:
> create table test (
>     n    int[]   );
>
> insert into test values (
>
>     '{1,2,3,4}'
>
> );
>
> now I need a query that returns all four numbers in different variables,i.e.
>
> an array like n[1],...,n[4]
>
> I tried queries like
>
>     select test.n from test which returns {1,2,3,4}
>
> or
>
>     select test.n[i] from test,  where i is 1,2,3 or 4 which each returns 1,2,...
>
> What I'm looking for is a query that returns four rows with one number in each
>
> result index. Can anyone help?
>

--
H. Wilms

Homepage schering.si2.uni-hannover.de/hugo
email    wilms@stud.fh-hannover.de





В списке pgsql-sql по дате отправления:

Предыдущее
От: Chris Bitmead
Дата:
Сообщение: Re: [SQL] Why wont this update work?
Следующее
От: Roberto Fichera
Дата:
Сообщение: Test access