Re: Select Command in Procedures

Поиск
Список
Период
Сортировка
От hubert depesz lubaczewski
Тема Re: Select Command in Procedures
Дата
Msg-id 20110203112319.GB14404@depesz.com
обсуждение исходный текст
Ответ на Select Command in Procedures  (Adarsh Sharma <adarsh.sharma@orkash.com>)
Список pgsql-general
On Thu, Feb 03, 2011 at 02:26:10PM +0530, Adarsh Sharma wrote:
> globe=# CREATE FUNCTION user10() RETURNS void AS'
> globe'# DECLARE
> globe'# BEGIN
> globe'# create table user_news_new as select
> record_id,field_name,field_value,news_date from user_news where
> field_name in ('SOI','RelLoc','Description','Heading','news_date')
> and field_value != '' ;
> globe'# END;
> globe'# ' LANGUAGE 'plpgsql';
> ERROR:  syntax error at or near "SOI"
> LINE 4: ...ue,news_date from user_news where field_name in ('SOI','RelL...
>                                                             ^

please note that you used ' to delimit both function body, and strings
in function body.

so when parser hits the ' character before "SOI" - it assumes it to be
end of function!

simply use $$ quotes around function body, and you should be fine.

Best regards,

depesz

--
Linkedin: http://www.linkedin.com/in/depesz  /  blog: http://www.depesz.com/
jid/gtalk: depesz@depesz.com / aim:depeszhdl / skype:depesz_hdl / gg:6749007

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

Предыдущее
От: Thom Brown
Дата:
Сообщение: Re: Issues with generate_series using integer boundaries
Следующее
От: hlcborg
Дата:
Сообщение: Re: Problem with encode () and hmac() in pgcrypto