0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Oracle PLSQL

Posted at

ファンクション実行文

まずはあって便利な簡単なファンクション実行文。

実行文
DECLARE
	o_end_msg	VARCHAR2(100);
	result		NUMBER(1);

BEGIN
	result := FUNCTION_NAME(PARAM1,o_end_msg);

	DBMS_OUTPUT.PUT_LINE(result || '' || o_end_msg);
END;

引数の必要なファンクションは大体これで実行できる。
とりあえず正常に終了できたかの確認と実行だけ行いたい場合はこれを使う。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?