Suche…


Einzeilige Kommentare

Einzeiligen Kommentaren wird mit -- vorangestellt und gehen bis zum Zeilenende:

SELECT *
FROM Employees -- this is a comment
WHERE FName = 'John'

Mehrzeilige Kommentare

Mehrzeilige Code-Kommentare werden in /* ... */ :

/* This query
   returns all employees */
SELECT *
FROM Employees

Es ist auch möglich, einen solchen Kommentar in die Mitte einer Zeile einzufügen:

SELECT /* all columns: */ *
FROM Employees


Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow