註釋
字元 # 表示註釋到行的結尾。
PRQL
from employees # Comment 1
# Comment 2
aggregate {average salary}
SQL
SELECT
AVG(salary)
FROM
employees
There’s no distinct multiline comment syntax.
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
字元 # 表示註釋到行的結尾。
from employees # Comment 1
# Comment 2
aggregate {average salary}
SELECT
AVG(salary)
FROM
employees
There’s no distinct multiline comment syntax.