在 SQL*Plus 提示符下,两者Rem
和都--
可以作为注释指示符:
Rem this is a comment
-- this is also a comment
create table emp (
id number primary key,
name cvarchar2(40));
两种评论技术之间有什么区别吗?
在 SQL*Plus 提示符下,两者Rem
和都--
可以作为注释指示符:
Rem this is a comment
-- this is also a comment
create table emp (
id number primary key,
name cvarchar2(40));
两种评论技术之间有什么区别吗?
不同之处在于
--
and/* */
可以在 PL/SQL 块中使用,而REM[ARK]
不能。以下将在 SQL*Plus 中工作:这些不会:
所有评论类型的11.2 文档都有更多评论信息。基础是...
该文档还包括关于不应使用注释的四个地方的注释,但这些不包括任何进一步的差异。
支持 REM 是因为它是 MS BATCH 文件的注释方式,并且此工具与自动化环境一起使用。
-- 由于是 SQL 标准的一部分,因此受支持。(http://www.contrib.andrew.cmu.edu/~shadow/sql/sql1992.txt第83页cf
<comment introducer> ::= <minus sign><minus sign>[<minus sign>...]
)不,应该没有区别。