do queries from strings in pgplsql

Поиск
Список
Период
Сортировка
От Virgilio Sanz
Тема do queries from strings in pgplsql
Дата
Msg-id 19991201170423.E18860@el-mundo.net
обсуждение исходный текст
Ответы Except operation  (Satyajeet Seth <csa98016@cse.iitd.ernet.in>)
Список pgsql-sql
Hi list,

I'm just added to the list and I'm not sure whether the following is a
FAQ or not possible. Anyway, here it goes:
       Is it possible to execute a query stored into a string?

I mean, something like:

function test(text) as returns opaque as '
declare v_weekday alias for $1; s_qry text; rec record;
begin s_qry = ''select field1,field2, '' || v_weekday || '' from t_diary''; for rec in exec_sql(s_qry)loop
--                 ^ that is what I'm looking for...
--        [do what is needed] end loop;
end;
' language 'plpgsql';

Thanks in advance,
Virgilio Sanz

--
Virgilio Sanz               vsanz@el-mundo.net virgilio.sanz@el-mundo.es
Diario el Mundo en Internet http://www.el-mundo.es
Email me with "send key pub" on subject to get my public key
"Success covers a multitude of blunders."
-- George Bernard Shaw

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

Предыдущее
От: "Gerhard Dieringer"
Дата:
Сообщение: Antw: [SQL] Partial Search
Следующее
От: Tom Lane
Дата:
Сообщение: Re: [SQL] VACUUM PROBLEM