EnterpriseDB

Previous PageTable Of ContentsNext Page

3.1.4 Comments

A comment is an arbitrary sequence of characters beginning with double dashes and extending to the end of the line, e.g.:

-- This is a standard SQL comment

Alternatively, C-style block comments can be used:

/* multiline comment
 * block
 */

where the comment begins with /* and extends to the matching occurrence of */.

A comment is removed from the input stream before further syntax analysis and is effectively replaced by whitespace.

Previous PageTable Of ContentsNext Page

Powered by Transit