SQLコードにコメントを追加したい。これどうやってするの? MySQLを使用しています。
「列のコメントはCOMMENT
オプションで指定できます。コメントはSHOW CREATE TABLE
およびSHOW FULL COLUMNS
ステートメントで表示されます。このオプションはMySQL 4.1以降で動作します。以前のバージョンでは無視されます。)」
例として
--
-- Table structure for table 'accesslog'
--
CREATE TABLE accesslog (
aid int(10) NOT NULL auto_increment COMMENT 'unique ID for each access entry',
title varchar(255) default NULL COMMENT 'the title of the page being accessed',
path varchar(255) default NULL COMMENT 'the local path of teh page being accessed',
....
) TYPE=MyISAM;
単一行のコメントを使用できます。
-- this is a comment
# this is also a comment
または複数行のコメント:
/*
multiline
comment
*/
here から使用できます
# For single line comments
-- Also for single line, must be followed by space/control character
/*
C-style multiline comment
*/
3種類のコメントがサポートされています
#を使用したハッシュベースの単一行コメント
Select * from users ; # this will list users
Select * from users ; -- this will list users
注:直後に空白を1つ入れることが重要です-
3)/ * * /を使用した複数行コメント
Select * from users ; /* this will list users */
/* comment here */
以下に例を示します:SELECT 1 /* this is an in-line comment */ + 1;