Podle dokumentace PostgreSQL existují komentáře ve stylu inline i bloku.
v řádku styl:
SELECT 23 AS test -- this is just a test
Blok styl:
/* The following is a very
* non-trivial SQL code */
SELECT 42 AS result
Podle dokumentace PostgreSQL existují komentáře ve stylu inline i bloku.
v řádku styl:
SELECT 23 AS test -- this is just a test
Blok styl:
/* The following is a very
* non-trivial SQL code */
SELECT 42 AS result