Comments

Comments are represented by #.

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.