A comment (sql_comment) can be included for every SQL statement.
<sql_comment> ::= /*<comment text>*/ | --<comment text>
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*/