Entering content frame

Comment (sql_comment) Locate the document in its SAP Library structure

A comment (sql_comment) can be included for every SQL statement.

Syntax

<sql_comment> ::= /*<comment text>*/ | --<comment text>

Explanation

You can enter any commend text.

If you use the syntax rule --<comment text> in a line, all characters entered in this line after -- are regarded as comments.

Example

CREATE TABLE person (cno FIXED(4), first name CHAR(7), last name CHAR(7), account FIXED(7,2)) /*create table person*/

Leaving content frame