function内で、viewを作成したいのですが、エラーが出てしまいます。
呼び出し元から渡される引数からviewを作成することは必須ですが、
functionの利用は必須ではありません。
試したことは以下の通りです。
①viewの作成時に引数を使用。
②execute formatを使用。
③return queryでデータを取得し、取得したデータをもとにviewを作成。
ソースは以下の通りです。
--①〜③共通 --データを取得するテーブル create table test( test_id numeric, test_name text, test_target date ); insert into test values(1,'target',cast('2022/01/01' as date)); insert into test values(2,'not_target',cast('2022/01/31' as date));
--①の処理を行うfunction
CREATE OR REPLACE FUNCTION fnc_main(p_date date) RETURNS integer LANGUAGE plpgsql AS $function$ declare begin create or replace view view_test as select test_id,test_name from test where test_target = p_date; return 0; end; /** select fnc_main(cast('2022/01/01' as date)) を 実行すると下記エラー Query 1 ERROR: ERROR: column "p_date" does not exist LINE 4: where test_target = p_date ^ QUERY: create or replace view view_test as select test_id,test_name from test where test_target = p_date CONTEXT: PL/pgSQL function fnc_main(date) line 8 at SQL statement **// $function$
--②の処理を行うfunction
CREATE OR REPLACE FUNCTION fnc_main2(p_date date) RETURNS integer LANGUAGE plpgsql AS $function$ declare begin execute format( 'create or replace view view_test as' ' select test_id,test_name' ' from test' ' where test_target = $1') using p_date; return 0; /** select fnc_main2(cast('2022/01/01' as date)) を 実行すると下記エラー Query 1 ERROR: ERROR: there is no parameter $1 LINE 1: ...as select test_id,test_name from test where test_target = $1 ^ QUERY: create or replace view view_test as select test_id,test_name from test where test_target = $1 CONTEXT: PL/pgSQL function fnc_main3(date) line 7 at EXECUTE **// end; $function$
--③の処理を行うfunction
CREATE OR REPLACE FUNCTION fnc_main3(p_date date) RETURNS table(out_test_id numeric, out_test_name text) LANGUAGE plpgsql AS $function$ declare begin return query( select test_id,test_name from test where test_target = p_date); /** select fnc_main3(cast('2022/01/01' as date)) を データは取得できるけれど、呼び出し元(function)で、returnされたデータからviewを作成できないのではないか? **// end; $function$
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。