How to iterate through arrays?

Поиск
Список
Период
Сортировка
От NosyMan
Тема How to iterate through arrays?
Дата
Msg-id 200502091559.08997.nosyman@gmail.com
обсуждение исходный текст
Ответы Re: How to iterate through arrays?  (PFC <lists@boutiquenumerique.com>)
Список pgsql-sql
Hi there,

I'm trying to iterate through arrays in PL/PGSQL:
....DECLARE    update_query CHAR;    update_query_params CHAR ARRAY[6];BEGIN        update_query_params[1]:='some
text';                       RAISE NOTICE 'Testing element %', update_query_params[1];END
 
.....


It does not 'compile'... :-(. Can you tell me what is the problem?

Thanks,
Nosy


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

Предыдущее
От: Achilleus Mantzios
Дата:
Сообщение: Re: parsing a string with a hexadecimal notation
Следующее
От: PFC
Дата:
Сообщение: Re: How to iterate through arrays?