Entering content frame

Comment (sql_comment) 

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

Syntax

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

Explanation

You can enter any comment text.

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

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

 

Leaving content frame