Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 379 Bytes

Comments.md

File metadata and controls

20 lines (15 loc) · 379 Bytes

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