PostgreSQLのドキュメントによると、インラインコメントとブロックスタイルコメントの両方があります。
インライン スタイル:
SELECT 23 AS test -- this is just a test
ブロック スタイル:
/* The following is a very
* non-trivial SQL code */
SELECT 42 AS result
PostgreSQLのドキュメントによると、インラインコメントとブロックスタイルコメントの両方があります。
インライン スタイル:
SELECT 23 AS test -- this is just a test
ブロック スタイル:
/* The following is a very
* non-trivial SQL code */
SELECT 42 AS result