登录
首页 >  数据库 >  MySQL

如何在MySQL代码中添加注释?

来源:tutorialspoint

时间:2023-08-31 08:14:28 495浏览 收藏

哈喽!大家好,很高兴又见面了,我是golang学习网的一名作者,今天由我给大家带来一篇《如何在MySQL代码中添加注释?》,本文主要会讲到等等知识点,希望大家一起学习进步,也欢迎大家关注、点赞、收藏、转发! 下面就一起来看看吧!

我们可以借助#符号在MySQL中添加注释。每当我们在任何句子前添加#符号时,整行都会被MySQL忽略。

MySQL支持三种类型的注释 -

1.借助#符号

mysql> create table CommentDemo
   -> (
   -> id int   #Id is an integer type
   -> );
Query OK, 0 rows affected (0.65 sec

上面,我们将注释设置为

#Id is an integer type

2.借助--符号

mysql> create table CommentDemo2
   -> (
   -> id int -- id is an integer type
   -> );
Query OK, 0 rows affected (0.49 sec)

在上面,我们将注释设置为 -

- id is an integer type

3.借助 /* */ 符号

这用于多行注释,与 C 或 C++ 语言相同。

mysql> create table CommentDemo3
   -> (
   -> /*id is an integer type */
   -> id int
   -> );
Query OK, 0 rows affected (0.52 sec)

上面,我们将多行注释设置为

/*id is an integer type */

理论要掌握,实操不能落!以上关于《如何在MySQL代码中添加注释?》的详细介绍,大家都掌握了吧!如果想要继续提升自己的能力,那么就来关注golang学习网公众号吧!

声明:本文转载于:tutorialspoint 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>