web-dev-qa-db-ja.com

MySQLにコメントを追加するにはどうすればよいですか?

SQLコードにコメントを追加したい。これどうやってするの? MySQLを使用しています。

120
amir amir

いくつかの方法:

# Comment
-- Comment
/* Comment */

--の後にスペースを置く を忘れないでください。

ドキュメント を参照してください。

205
Martti Laine

「列のコメントは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;
21
Dinesh Gehlot

単一行のコメントを使用できます。

-- this is a comment
# this is also a comment

または複数行のコメント:

/*
   multiline
   comment
*/
15
fivedigit

here から使用できます

#  For single line comments
-- Also for single line, must be followed by space/control character
/*
    C-style multiline comment
*/
3
Bort

3種類のコメントがサポートされています

  1. #を使用したハッシュベースの単一行コメント

    Select * from users ; # this will list users
    
    1. -を使用したダブルダッシュのコメント

    Select * from users ; -- this will list users

注:直後に空白を1つ入れることが重要です-

3)/ * * /を使用した複数行コメント

Select * from users ; /* this will list users */
1
Mr Coder
/* comment here */ 

以下に例を示します:SELECT 1 /* this is an in-line comment */ + 1;

http://dev.mysql.com/doc/refman/5.0/en/comments.html

0
rivethead_