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)
广告