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

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

MySQL支持三种类型的注释-

1.借助#符号

mysql> create table CommentDemo
   -> (
   -> id int   #Id is an integer type
   -> );

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

- id is an integer type

3.借助/ * * /符号

这是针对多行注释的,与C或C ++语言相同。

mysql> create table CommentDemo3
   -> (
   -> /*id is an integer type */
   -> id int
   -> );

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

/*id is an integer type */