MySQL
コメントMysql
サーチ…
備考
末尾のスペースを必要とする--
スタイルのコメントは、スペースを必要としないSQL標準とは動作が異なります 。
コメントの追加
コメントには3つのタイプがあります:
# 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
*/
例:
SELECT * FROM t1; -- this is comment
CREATE TABLE stack(
/*id_user int,
username varchar(30),
password varchar(30)
*/
id int
);
--
この方法は、スペースは、以下のことが必要です--
コメントが始まる前に、それ以外の場合は、コマンドとして解釈され、通常はエラーが発生します。
#This comment works
/*This comment works.*/
--This comment does not.
テーブル定義のコメント
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.';
COMMENT
後の=
使用はオプションです。 ( 公式ドキュメント )
これらのコメントは、他と異なり、スキーマに保存され、 SHOW CREATE TABLE
またはinformation_schema
から取得できます。
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow