Determining the names of columns in a dynamic query

Поиск
Список
Период
Сортировка
От Johan Nel
Тема Determining the names of columns in a dynamic query
Дата
Msg-id gst0bj$m50$1@news.motzarella.org
обсуждение исходный текст
Ответы Re: Determining the names of columns in a dynamic query  (Decibel! <decibel@decibel.org>)
Список pgsql-general
Hi,

Sorry for cross posting, but seems nobody read the pgsql.sql NG.  Have
not received any response there so lets see if this create some reaction.

Is it possible in pgsql to have something to manipulate columns where
the column names will only be resolved during execution of the select
statement:

FOR rec IN (SELECT * FROM table)
LOOP
   -- This is what I would like to do
   FOR col IN (rec.column_names)
   LOOP
     IF col = 'blahblah' THEN
       -- Do something
     ELSEIF col = 'nextcol'
       --
     ELSE
       -- Other column
     END IF;
   END LOOP;
END LOOP;

For the above, it does not need to be exactly the same, but are there a
group of functions available to at least return in a dynamic query the
number of columns, name of a column given the ordinal number of the
column, etc?

TIA,

Johan Nel
Pretoria, South Africa.

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

Предыдущее
От: Conrad Lender
Дата:
Сообщение: Re: standard_conforming_strings and pg_escape_string()
Следующее
От: Scott Marlowe
Дата:
Сообщение: Re: Selling an 8.1 to 8.3 upgrade