You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-- This is a single-line commentSELECT*FROMcycling.route; -- End of line comment// This is also a single-line comment
SELECT*FROMcycling.route; // End of line comment
And handle multi line comments
/*This is the first line of a comment that spans multiple lines*/SELECT*FROMcycling.route;
The text was updated successfully, but these errors were encountered:
It is common to add comments to CQL which can get picked up when pasting in CQL. We need to ignore these.
Eg
And handle multi line comments
The text was updated successfully, but these errors were encountered: