Suche…


Bemerkungen

Der -- Kommentarstil, der ein Leerzeichen benötigt, unterscheidet sich vom SQL-Standard , der keinen Platz benötigt.

Kommentare hinzufügen

Es gibt drei Arten von Kommentaren:

 # This comment continues to the end of line

-- This comment continues to the end of line

/* This is an in-line comment */ 

/*
This is a
multiple-line comment
*/

Beispiel:

SELECT * FROM t1; -- this is comment

CREATE TABLE stack(
    /*id_user int,
    username varchar(30),
    password varchar(30)
    */
    id int
);

Die -- Methode erfordert , dass ein Raum folgt die -- vor dem Kommentar beginnt, sonst wird es als Befehl interpretiert werden und in der Regel einen Fehler verursachen.

#This comment works
/*This comment works.*/
--This comment does not.

Tabellendefinitionen kommentieren

CREATE TABLE menagerie.bird (
    bird_id INT NOT NULL AUTO_INCREMENT,
    species VARCHAR(300) DEFAULT NULL COMMENT 'You can include genus, but never subspecies.',
    INDEX idx_species (species) COMMENT 'We must search on species often.',
    PRIMARY KEY (bird_id)
) ENGINE=InnoDB COMMENT 'This table was inaugurated on February 10th.';

Die Verwendung von = nach COMMENT ist optional. ( Offizielle Dokumente )

Diese Kommentare werden im Gegensatz zu den anderen mit dem Schema gespeichert und können über SHOW CREATE TABLE oder aus information_schema abgerufen werden.



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