Re: dinamic sql

Поиск
Список
Период
Сортировка
От Jaime Casanova
Тема Re: dinamic sql
Дата
Msg-id c2d9e70e0608290533m3cb823d4s3be0455c2f2c4647@mail.gmail.com
обсуждение исходный текст
Ответ на dinamic sql  ("Manso Gomez, Ramon" <rmgomez@indra.es>)
Список pgsql-sql
On 8/29/06, Manso Gomez, Ramon <rmgomez@indra.es> wrote:
>
> if(user_Input = 'a')
> l_query := l_query||a_from_clause ||'where ename in '||user_Input
> else
> if(user_Input = 'b')
> l_query := l_query||b_from_clause||'where ename in '||user_Input
>
> OPEN csr FOR l_query;
>

l_query := l_query || a_from_clause                             || 'where ename in (' ||
quote_literal(user_input) || ')'

-- 
regards,
Jaime Casanova

"Programming today is a race between software engineers striving to
build bigger and better idiot-proof programs and the universe trying
to produce bigger and better idiots.
So far, the universe is winning."                                      Richard Cook


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

Предыдущее
От: Michael Fuhr
Дата:
Сообщение: Re: Trigger on Insert to Update only newly inserted fields?
Следующее
От: "Aaron Bono"
Дата:
Сообщение: Re: Performance Problem with sub-select using array