0
点赞
收藏
分享

微信扫一扫

PL/SQL单行与多行注释操作实例

通过plsql dev创建一个测试窗口,在脚本输入如下:

-- Created on 2018/3/21 by E.WANG 
declare
-- Local variables here
i integer;
begin
/*
Test statements here
Set i=10;
*/
i:=10;
i:=i**2+i;
dbms_output.put_line('The i lastResult:' || i);

end;

窗口截图:

PL/SQL单行与多行注释操作实例_PL/SQL

运行结果截图:

PL/SQL单行与多行注释操作实例_sql_02


举报

相关推荐

0 条评论