Re: variable scooping

Поиск
Список
Период
Сортировка
От Michael Fuhr
Тема Re: variable scooping
Дата
Msg-id 20060130042424.GA56410@winnie.fuhr.org
обсуждение исходный текст
Ответ на variable scooping  (ody quraviharto <odyyudah@gmail.com>)
Список pgsql-sql
On Mon, Jan 30, 2006 at 09:01:37AM +0700, ody quraviharto wrote:
> "declare tbl_name varchar:='tbl_A';
> begin
>         if exists(select 1 from pg_tables where tablename=tbl_name) then
>         select count(*) from tbl_name;
>         end if;
> end"
> 
> the message was: syntax error in $1 in "select count(*) from $1".

You'll need to use EXECUTE for this query; see "Executing Dynamic
Commands" in the PL/pgSQL documentation.  Here's the link for 8.1
(but use the documentation for whatever version you're running):

http://www.postgresql.org/docs/8.1/interactive/plpgsql-statements.html#PLPGSQL-STATEMENTS-EXECUTING-DYN

-- 
Michael Fuhr


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

Предыдущее
От: Pandurangan R S
Дата:
Сообщение: Re: [GENERAL] How to find a temporary table
Следующее
От: AKHILESH GUPTA
Дата:
Сообщение: regarding debugging?