首頁  >  文章  >  資料庫  >  MySQL查詢中加入註解有哪幾種方式?

MySQL查詢中加入註解有哪幾種方式?

WBOY
WBOY轉載
2023-08-28 11:33:02821瀏覽

MySQL查詢中加入註解有哪幾種方式?

我們可以透過 MySQL 伺服器支援的幾種方式加入註解 -

# Comment

這個是單行註解。這種註解以 # 字元開始,直到行尾。

-– 註解

 這也是單行註解。後面必須跟空格或控製字元。

/* Comment */

這是多行註解。此語法使註解可以擴展到多行,因為開始和結束序列不必位於同一行。

考慮以下範例來示範所有三種類型的註解 - p>

mysql> Select NOW() #Single line comment continues to the end of line
    -> ;
+---------------------+
| NOW()               |
+---------------------+
| 2017-11-07 15:04:03 |
+---------------------+
1 row in set (0.00 sec)

mysql> Select NOW() -- Single line comment continues to the end of line
    -> ;
+---------------------+
| NOW()               |
+---------------------+
| 2017-11-07 15:04:17 |
+---------------------+
1 row in set (0.00 sec)

mysql> Select 1 /* in-line comment */ +1;
+-------+
| 1 +1  |
+-------+
|     2 |
+-------+
1 row in set (0.10 sec)

mysql> Select 1 /* in-line comment */ +1;
+-------+
| 1 +1  |
+-------+
|     2 |
+-------+
1 row in set (0.00 sec)

mysql> Select 1
    -> /*
   /*> this is a Multiple-line
   /*> comment
   /*> */
    -> +1;
+-------+
| 1  +1 |
+-------+
|     2 |
+-------+
1 row in set (0.00 sec)

以上是MySQL查詢中加入註解有哪幾種方式?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除