您好,欢迎访问一九零五行业门户网

MySQL中的/*是什么意思?

这是一种评论。 /* 是评论的开始,*/ 是评论的结束。
让我们实现并展示如何创建评论
mysql> /* this is the first mysql program */
mysql 将忽略上面的注释。
让我们看一个例子。在这里,我们用 /* 和 */ 编写了注释
mysql> /*this table has information about person */mysql> create table demotable( personid int not null auto_increment primary key, personname varchar(20), personage int);query ok, 0 rows affected (0.58 sec)
以上就是mysql中的/*是什么意思?的详细内容。
其它类似信息

推荐信息