我們可以借助#符號在MySQL中添加注釋。每當(dāng)我們在任何句子前添加#符號時,整行都會被MySQL忽略。
MySQL支持三種類型的注釋 –
1.借助#符號
mysql> create table CommentDemo -> ( -> id int #Id is an integer type -> ); Query OK, 0 rows affected (0.65 sec
登錄后復(fù)制
上面,我們將注釋設(shè)置為
#Id is an integer type
登錄后復(fù)制
2.借助–符號
mysql> create table CommentDemo2 -> ( -> id int -- id is an integer type -> ); Query OK, 0 rows affected (0.49 sec)
登錄后復(fù)制
在上面,我們將注釋設(shè)置為 –
- id is an integer type
登錄后復(fù)制
3.借助 /* */ 符號
這用于多行注釋,與 C 或 C++ 語言相同。
mysql> create table CommentDemo3 -> ( -> /*id is an integer type */ -> id int -> ); Query OK, 0 rows affected (0.52 sec)
登錄后復(fù)制
上面,我們將多行注釋設(shè)置為
/*id is an integer type */
登錄后復(fù)制
以上就是如何在MySQL代碼中添加注釋?的詳細內(nèi)容,更多請關(guān)注www.92cms.cn其它相關(guān)文章!