To create a single line comment in PostgresSQL, you use two hashes --
For example:
-- This is a comment.
and if you want multi-line comment, then you use /* */
For example
/*
This is a multi-line
comment
which won't be read by
SQL interpretor
*/
Checkout more Postgres SQL Tutorials here.