Versions available for this page: CUBRID 8.2.1 | CUBRID 8.3.0 | CUBRID 8.3.1 | CUBRID 8.4.0 | CUBRID 8.4.1 | CUBRID 8.4.3 | CUBRID 9.0.0 |
The CSQL Interpreter is a SQL-style method; the SQL-style comment starts with the double dashes (--) and the comment line after the double dashes are regarded as comment. Additionally, it supports C++ style, which starts with double slashes (//), and C-style, which starts and ends with '/*' and '*/' respectively.
The following are examples of comments supported in the CSQL Interpreter.
-- This is a SQL-style comment.
This is a C++ style comment.
/* This is a C-style comment.*/
/* This is an example to use two lines
as comment by using the C-style. */