Comments

Character # denotes a comment until the end of the line.

PRQL

  1. from employees # Comment 1
  2. # Comment 2
  3. aggregate {average salary}

SQL

  1. SELECT
  2. AVG(salary)
  3. FROM
  4. employees

There’s no distinct multiline comment syntax.