如何在MySQL程式碼中加入註解?

王林
發布: 2023-08-31 11:05:02
轉載
1488 人瀏覽過

如何在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程式碼中加入註解?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!