Re: Dynamic Query for System functions - now()

Поиск
Список
Период
Сортировка
От Christoph Haller
Тема Re: Dynamic Query for System functions - now()
Дата
Msg-id 200311101037.LAA29518@rodos
обсуждение исходный текст
Ответ на Dynamic Query for System functions - now()  ("Kumar" <sgnerd@yahoo.com.sg>)
Список pgsql-sql
> 
> Dear Friends,
> 
> I am using PostgreSQL 7.3.4 Server on RH Linux 7.2. I am trying to generate=
>  a dynamic query to fetch the next month interval.
> 
> select now()+ interval'1 month';  -- This is working fine.
> 
> I wanna dynamically assign the interval number. i,e --> select now()+ inter=
> val'n month';
> 
> For this I wanted to write a dynamic query.
> EXECUTE 'select now()+ interval\'' || 3|| 'month\'';
> Error
>     ERROR:  parser: parse error at or near "'select now()+ interval\''" at =
> character 9
> 
> Help help me with this. I wanted to use this query inside a PLpgSQL functio=
> n.
> 
> Regards
> Kumar
> 
You'd probably want to use the to_char() function like this 
EXECUTE 'select now()+ interval\'' ||to_char(3,'9')|| 'month\'';

The || operator is the string concatination operator. 

Regards, Christoph 



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

Предыдущее
От: "Kumar"
Дата:
Сообщение: Dynamic Query for System functions - now()
Следующее
От: "Guillaume Houssay"
Дата:
Сообщение: FOR : Structure control pb