Enligt PostgreSQL-dokumentationen finns både inline- och blockstilkommentarerna.
Den inline stil:
SELECT 23 AS test -- this is just a test
blocket stil:
/* The following is a very
* non-trivial SQL code */
SELECT 42 AS result
Enligt PostgreSQL-dokumentationen finns både inline- och blockstilkommentarerna.
Den inline stil:
SELECT 23 AS test -- this is just a test
blocket stil:
/* The following is a very
* non-trivial SQL code */
SELECT 42 AS result