We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Standard SQL supports two types of comments:
-- single line comment /* multi line block comment */
These are supported by all dialects.
According to standard, block comments can also be nested, like:
/* main comment /* sub-comment */ */
This is however only supported by some dialects:
Some dialects additionally support shell-style hash-comments:
# a comment