MySQL
Reactie Mysql
Zoeken…
Opmerkingen
De --
stijl van commentaar, waarin een spatie, vereist verschilt in het gedrag van de SQL-standaard , die de ruimte niet vereist.
Opmerkingen toevoegen
Er zijn drie soorten opmerkingen:
# 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
*/
Voorbeeld:
SELECT * FROM t1; -- this is comment
CREATE TABLE stack(
/*id_user int,
username varchar(30),
password varchar(30)
*/
id int
);
De --
methode vereist dat een spatie de --
volgt voordat de opmerking begint, anders wordt deze geïnterpreteerd als een opdracht en veroorzaakt meestal een fout.
#This comment works
/*This comment works.*/
--This comment does not.
Definities van tabel met opmerkingen
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.';
Het gebruik van een =
na COMMENT
is optioneel. ( Officiële documenten )
Deze opmerkingen, in tegenstelling tot de andere, worden opgeslagen met het schema en kunnen worden opgehaald via SHOW CREATE TABLE
of uit information_schema
.
Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow