如何在 MySQL 中添加注释?
我想在 SQL 代码中添加注释。我该怎么做?我正在使用MySQL。
I want to add comment in SQL code. How can I do this? I'm using MySQL.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想在 SQL 代码中添加注释。我该怎么做?我正在使用MySQL。
I want to add comment in SQL code. How can I do this? I'm using MySQL.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(6)
几种方法:
记住把
--
后面的空格。请参阅文档。
Several ways:
Remember to put the space after
--
.See the documentation.
“可以使用
COMMENT
选项指定列的注释。注释由SHOW CREATE TABLE
和SHOW FULL COLUMNS
语句显示。该选项从 MySQL 4.1 开始可用(允许但在早期版本中被忽略。)”作为示例。
"A comment for a column can be specified with the
COMMENT
option. The comment is displayed by theSHOW CREATE TABLE
andSHOW FULL COLUMNS
statements. This option is operational as of MySQL 4.1. (It is allowed but ignored in earlier versions.)"As an example
您可以使用单行注释:
或多行注释:
You can use single-line comments:
Or a multiline comment:
从此处您可以使用:
From here you can use:
这是一个示例:
参考:9.7 条评论
Here is an example:
Reference: 9.7 Comments
支持三种类型的注释:
使用 # 进行哈希基单行注释
使用
--
进行双破折号注释注意:
--
之后有一个空格非常重要使用 /* */ 进行多行注释
Three types of commenting are supported:
Hash base single line commenting using #
Double Dash commenting using
--
Note: It's important to have single white space just after
--
Multi line commenting using /* */