Sök…


Anmärkningar

Den -- stil kommentar, vilket kräver en avslutande utrymme, skiljer sig i beteende från SQL-standarden , vilket inte kräver utrymme.

Lägga till kommentarer

Det finns tre typer av kommentarer:

 # 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
*/

Exempel:

SELECT * FROM t1; -- this is comment

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

Den -- metoden kräver att ett utrymme följer -- innan kommentaren börjar, annars kommer det att tolkas som ett kommando och vanligtvis orsakar ett fel.

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

Kommentarer om tabelldefinitioner

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.';

Att använda en = efter COMMENT är valfritt. ( Officiella dokument )

Dessa kommentarer sparas till skillnad från de andra med schemat och kan hämtas via SHOW CREATE TABLE eller från information_schema .



Modified text is an extract of the original Stack Overflow Documentation
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow