| /* A multi-line | |
| * comment */ | |
| 'Another string /* Isn\'t a comment', | |
| "A string */" | |
| -- A line comment | |
| SELECT * FROM users WHERE id IN (1, 2.0, +30e-1); | |
| -- keywords are case-insensitive. | |
| -- Note: user-table is a single identifier, not a pair of keywords | |
| select * from user-table where id in (x, y, z); |