如何在MySQL中添加注释?

时间:2012-02-01 15:39:22

标签: mysql database comments

我想在SQL代码中添加注释。我怎样才能做到这一点?我正在使用MySQL。

6 个答案:

答案 0 :(得分:194)

有几种方法:

# Comment
-- Comment
/* Comment */

请参阅docs

答案 1 :(得分:20)

“可以使用COMMENT选项指定列的注释。注释由SHOW CREATE TABLESHOW 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;

答案 2 :(得分:15)

您可以使用单行注释:

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

或多线评论:

/*
   multiline
   comment
*/

答案 3 :(得分:3)

here您可以使用

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

答案 4 :(得分:1)

支持三种评论

  1. 使用#

    进行哈希基本单行注释
    Select * from users ; # this will list users
    
    1. 使用 -
    2. 进行Double Dash评论

      Select * from users ; -- this will list users

      注意:重要的是在 -

      之后有单个空格

      3)使用/ * * /

      进行多行评论
      Select * from users ; /* this will list users */
      

答案 5 :(得分:0)

/* comment here */ 

这是一个例子:SELECT 1 /* this is an in-line comment */ + 1;

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