コメント

 

-- This is comment
SELECT 1 /* this is an in-line comment */ + 1 from dual;

「#」文字から行末まで
「-- 」シーケンスから行末まで
/* シーケンスから次の */ シーケンスまで

SELECT 1+1; # This comment continues to the end of line
SELECT 1+1; -- This comment continues to the end of line
SELECT 1 /* this is an in-line comment */ + 1;

 

https://www.postgresql.jp/document/9.4/html/sql-syntax-lexical.html#SQL-SYNTAX-COMMENTS

「-- 」シーケンスから行末まで
/* シーケンスから次の */ シーケンスまで

SELECT 1+1; -- This comment continues to the end of line
SELECT 1 /* this is an in-line comment */ + 1;

 


-- This is comment
SELECT 1 /* this is an in-line comment */ + 1 ;