pl/sql中的注释有哪些

这篇文章主要讲解了“pl/sql中的注释有哪些”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“pl/sql中的注释有哪些”吧!

一、注释分为单行注释和多行注释两种。

    1.单行注释使用“–”。

        DECLARE

        howmany NUMBER;

        num_tables NUMBER;

        BEGIN

        — Begin processing

        SELECT COUNT(*) INTO howmany

        FROM USER_OBJECTS

        WHERE OBJECT_TYPE = 'TABLE';     — Check number of tables

        num_tables := howmany; — Compute another value

        END;

    2.多行注释以“/*”开始,“*/”结尾。

        DECLARE

        some_condition BOOLEAN;

        pi NUMBER := 3.1415926;

        radius NUMBER := 15;

        area NUMBER;

        BEGIN

        /* Perform some simple tests and assignments */

        IF 2 + 2 = 4 THEN

        some_condition := TRUE;

        /* We expect this THEN to always be performed */

        END IF;

        /* This line computes the area of a circle using pi,

        which is the ratio between the circumference and diameter.

        After the area is computed, the result is displayed. */

        area := pi * radius**2;

        DBMS_OUTPUT.PUT_LINE('The area is: ' || TO_CHAR(area));

        END;

二、使用注释需要注意点

    1.多行注释不能进行嵌套,如下面是错误的:

         /*

        IF 2 + 2 = 4 THEN

        some_condition := TRUE;

        /* We expect this THEN to always be performed */

        END IF;

        */

    2.多行注释里面可以嵌套单行注释:

        /*

        IF 2 + 2 = 4 THEN

        some_condition := TRUE;

        — We expect this THEN to always be performed

        END IF;

        */

感谢各位的阅读,以上就是“pl/sql中的注释有哪些”的内容了,经过本文的学习后,相信大家对pl/sql中的注释有哪些这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是亿速云,小编将为大家推送更多相关知识点的文章,欢迎关注!

原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/205076.html

(0)
上一篇 2021年11月29日
下一篇 2021年11月29日

相关推荐

发表回复

登录后才能评论