Skip to content

Comments

Andrey Gershun edited this page May 26, 2015 · 1 revision

Comments

AlaSQL supports two types of comments:

  • multi-line comments enclosed in /* and */
  • single-line comments starting with -- to the end of line
/*
   My
   multi-line 
   comments
*/

SELECT * FROM one; -- and this is comments also
-- and this 
-- and this

Please, try this example in jsFiddle

Clone this wiki locally