Home > Software design >  How to add comment line in AWS Athena query editor
How to add comment line in AWS Athena query editor

Time:12-12

It very simple but feel not possible. Do you know how to add comment line in Athena query editor

CodePudding user response:

You can add single line comments using prefix "--"

Example -

--This is a comment
SELECT * FROM data_cat.example
  • Related