Use # to make line comments. This is particularly useful when using spyql lib in Python scripts.
e.g.
Query("""
SELECT
col1, # this is the first column
col1*2
# col2 # this line is commented
FROM
range(10) # generates 10 lines, with col1 ranging from 0 to 9
""")()
Use
#
to make line comments. This is particularly useful when using spyql lib in Python scripts.e.g.