Comments

A comment is an arbitrary sequence of characters following double dashes up to the end of the line. We also support double-slashes as comments, e.g.:

-- This is a standard SQL comment
// And this is another supported comment style, like C++
    
We also support C-style block comments, e.g.:
/* multi
   line
   comment
 */