9

Is there a way to comment lines / explain query code with comments in Kusto language (KQL) / Azure Data Explorer queries?

Thanks in advance

Julio Navarro
  • 127
  • 1
  • 1
  • 5

1 Answers1

17

You can use // to comment lines:

// This is a comment
print x="hi"
yifats
  • 2,419
  • 5
  • 6