2010-04-15から1日間の記事一覧

postgres temp function

PostgreSQL:一時関数 create temp function | 作業日報 一時的な関数を利用したい場合は pg_tempスキーマを利用できる、但しVer 8.2.4以降。 drop function if exists pg_temp.test(int);create function pg_temp.test(int) returns integer as $$ begin ret…