PostgreSQL
 sql >> Datenbank >  >> RDS >> PostgreSQL

Zeichen/Zeichen in postgres / postgresql / psql kommentieren?

Gemäß der PostgreSQL-Dokumentation gibt es sowohl die Inline- als auch die Blockstil-Kommentare.

Die inline Stil:

SELECT 23 AS test  -- this is just a test

Der Block Stil:

/* The following is a very
 * non-trivial SQL code */
SELECT 42 AS result