如何在 MySQL 中添加注释?

发布于 2025-01-01 05:35:09 字数 40 浏览 0 评论 0原文

我想在 SQL 代码中添加注释。我该怎么做?我正在使用MySQL。

I want to add comment in SQL code. How can I do this? I'm using MySQL.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

ら栖息 2025-01-08 05:35:09

几种方法:

# Comment
-- Comment
/* Comment */

记住-- 后面的空格。

请参阅文档

Several ways:

# Comment
-- Comment
/* Comment */

Remember to put the space after --.

See the documentation.

静赏你的温柔 2025-01-08 05:35:09

“可以使用 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;

"A comment for a column can be specified with the COMMENT option. The comment is displayed by the SHOW CREATE TABLE and SHOW FULL COLUMNS statements. This option is operational as of MySQL 4.1. (It is allowed but ignored in earlier versions.)"

As an example

--
-- 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;
与君绝 2025-01-08 05:35:09

您可以使用单行注释:

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

或多行注释:

/*
   multiline
   comment
*/

You can use single-line comments:

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

Or a multiline comment:

/*
   multiline
   comment
*/
淡紫姑娘! 2025-01-08 05:35:09

此处您可以使用:

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

From here you can use:

#  For single line comments
-- Also for single line, must be followed by space/control character
/*
    C-style multiline comment
*/
王权女流氓 2025-01-08 05:35:09
/* comment here */

这是一个示例:

SELECT 1 /* this is an in-line comment */ + 1;

参考:9.7 条评论

/* comment here */

Here is an example:

SELECT 1 /* this is an in-line comment */ + 1;

Reference: 9.7 Comments

不顾 2025-01-08 05:35:09

支持三种类型的注释:

  1. 使用 # 进行哈希基单行注释

    从用户中选择*; # 这将列出用户
    
  2. 使用 -- 进行双破折号注释

    从用户中选择*; -- 这将列出用户
    

    注意:-- 之后有一个空格非常重要

  3. 使用 /* */ 进行多行注释

    从用户中选择*; /* 这将列出用户 */
    

Three types of commenting are supported:

  1. Hash base single line commenting using #

    Select * from users ; # this will list users
    
  2. Double Dash commenting using --

    Select * from users ; -- this will list users
    

    Note: It's important to have single white space just after --

  3. Multi line commenting using /* */

    Select * from users ; /* this will list users */
    
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文