Volgens PostgreSQL-documentatie zijn er zowel de inline- als de blokstijlopmerkingen.
De inline stijl:
SELECT 23 AS test -- this is just a test
Het blok stijl:
/* The following is a very
* non-trivial SQL code */
SELECT 42 AS result
Volgens PostgreSQL-documentatie zijn er zowel de inline- als de blokstijlopmerkingen.
De inline stijl:
SELECT 23 AS test -- this is just a test
Het blok stijl:
/* The following is a very
* non-trivial SQL code */
SELECT 42 AS result