Maison > Article > base de données > [MySQL 11] Commentaires
Lors de la lecture du code MySQL, j'ai constaté que je devais ajouter des commentaires :
Il existe trois types de caractères de commentaire MySQL :
1、#… 2、”- - …” 3、/…/
Test dans l'ordre :
1, #…
mysql> select * from person; #chazhao +----+------+------+------+-----------+| id | name | sex | age | addr | +----+------+------+------+-----------+| 1 | Jone | fema | 27 | xianggang | | 2 | Lily | fema | 25 | taiwan | | 3 | Bobe | male | 25 | ximan || 4 | Kity | fama | 20 | beijing | +----+------+------+------+-----------+
2. « - - … »
mysql> select * from person; --chazhao +----+------+------+------+-----------+| id | name | sex | age | addr | +----+------+------+------+-----------+| 1 | Jone | fema | 27 | xianggang | | 2 | Lily | fema | 25 | taiwan | | 3 | Bobe | male | 25 | ximan || 4 | Kity | fama | 20 | beijing | +----+------+------+------+-----------+
3.
mysql> select */*chazhoa*/ from person; --chazhao +----+------+------+------+-----------+| id | name | sex | age | addr | +----+------+------+------+-----------+| 1 | Jone | fema | 27 | xianggang | | 2 | Lily | fema | 25 | taiwan | | 3 | Bobe | male | 25 | ximan || 4 | Kity | fama | 20 | beijing | +----+------+------+------+-----------+Ce qui précède est le contenu de l'annotation [MySQL 11] Pour plus de contenu connexe, veuillez faire attention au site Web PHP chinois (www.php.cn) !