What is the difference between “AS” and “IS” in an Oracle stored procedure?

前端 未结 6 547
不思量自难忘°
不思量自难忘° 2020-11-27 12:13

I see Oracle procedures sometimes written with \"AS\", and sometimes with \"IS\" keyword.

CREATE OR REPLACE Procedure TESTUSER.KILLINSTANCE (INSTANCEID inte         


        
6条回答
  •  夕颜
    夕颜 (楼主)
    2020-11-27 13:10

    The AS keyword is used instead of the IS keyword for creating a standalone function.

    [ A standalone stored function is a function (a subprogram that returns a single value) that is stored in the database. Note: A standalone stored function that you create with the CREATE FUNCTION statement is different from a function that you declare and define in a PL/SQL block or package. ]

    For more explanation, read this...

提交回复
热议问题