CommentsPRQLSQLCommentsCharacter # denotes a comment until the end of the line. PRQLfrom employees # Comment 1# Comment 2aggregate {average salary}SQLSELECT AVG(salary)FROM employeesThere’s no distinct multiline comment syntax.