mirror of
https://github.com/apache/impala.git
synced 2025-12-31 06:02:51 -05:00
10 lines
200 B
SQL
10 lines
200 B
SQL
SELECT 1+1; -- This comment continues to the end of line
|
|
SELECT 1 /* this is an in-line comment */ + 1;
|
|
SELECT 1+
|
|
/*
|
|
this is a
|
|
multiple-line comment
|
|
*/
|
|
1;
|
|
SELECT /* This comment block is OK */ 2;
|