Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ASに遭遇するまで、プロシージャを定義するときに使用していましISた。
AS
IS
create or replace procedure myproc (cnum in customer.custno%type) is --here v_name char(20); v_phone char(10); begin ...... end myproc;
isの代わりにどのような場合に使用する必要がありasますか?
is
as
それらは同じです。
関数本体は、キーワード IS (または AS) で始まり、キーワード END で終わり、その後にオプションの関数名が続きます。
参照については、こちらを参照してください。