关于Oracle DB中SQL Script的注释(REM,--,/* */)
Oracle DB中SQL Script注释的语法
begin DBMS_OUTPUT.PUT_LINE('Test'); REM commentend; /begin REM comment DBMS_OUTPUT.PUT_LINE('Test');end; /转载请注明出处:http://blog.csdn.net/pan_tian/article/details/7745666You can enter comments in a script in three ways:
using the SQL*Plus REMARK command for single line comments.
using the SQL comment delimiters /*... */ for single or multi-line comments.
using ANSI/ISO (American National Standards Institute/International Standards Organization) comments - - for single line comments.
======EOF======