91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

MySQL表和列的注釋總結

發布時間:2020-10-19 15:12:47 來源:腳本之家 閱讀:180 作者:laozhang 欄目:MySQL數據庫

像代碼一樣,可以為表以及表中的列添加注釋,方便其他人知曉其功能。對于一些字段,在經過一定時間后,創建者未必也能想起其具體的含意,所以注釋顯得尤為重要。

注釋的添加
注釋的添加是通過在定義表或列的時候在末尾加上 COMMENT 關鍵字來實現的,最長支持 1024 個字符。

可以在創建表的時候為表和列添加相應的注釋。

CREATE TABLE test_comment 
 ( 
   id  SERIAL PRIMARY KEY, 
   col1 INT comment '列的注釋' 
 ) 
comment '表的注釋'; 

執行上面的語句后創建了一個名為 test_comment 的表,并且為表和其中的 col1 列指定了相應的注釋。

然后可通過 SHOW CREATE TABLE <table_name> 來查看。

mysql> SHOW CREATE TABLE test_comment\G
*************************** 1. row ***************************
    Table: test_comment
Create Table: CREATE TABLE `test_comment` (
 `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
 `col1` int(11) DEFAULT NULL COMMENT '列的注釋',
 PRIMARY KEY (`id`),
 UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='表的注釋'
1 row in set (0.00 sec)

注釋的查看

除了 SHOW CREATE TABLE <table_name> 語法,還有其他一些查看注釋的方式。

SHOW TABLE STATUS 能夠查看表的注釋,其語法為:

SHOW TABLE STATUS WHERE name='table_name';
以下是通過 SHOW TABLE STATUS 查看的結果:

mysql> SHOW TABLE STATUS WHERE name='test_comment'\G
*************************** 1. row ***************************
      Name: test_comment
     Engine: InnoDB
    Version: 10
   Row_format: Dynamic
      Rows: 0
 Avg_row_length: 0
  Data_length: 16384
Max_data_length: 0
  Index_length: 16384
   Data_free: 0
 Auto_increment: 1
  Create_time: 2019-05-11 15:41:01
  Update_time: NULL
   Check_time: NULL
   Collation: utf8mb4_general_ci
    Checksum: NULL
 Create_options:
    Comment: 表的注釋
1 row in set (0.00 sec)

而通過 SHOW FULL COLUMNS 則可查看列的注釋,其語法為:

SHOW FULL COLUMNS FROM <tablename>

以下是通過 SHOW FULL COLUMNS 查看的結果:

mysql>SHOW FULL COLUMNS FROM test_comment\G
*************************** 1. row ***************************
   Field: id
   Type: bigint(20) unsigned
 Collation: NULL
   Null: NO
    Key: PRI
  Default: NULL
   Extra: auto_increment
Privileges: select,insert,update,references
  Comment:
*************************** 2. row ***************************
   Field: col1
   Type: int(11)
 Collation: NULL
   Null: YES
    Key:
  Default: NULL
   Extra:
Privileges: select,insert,update,references
  Comment: 列的注釋
2 rows in set (0.00 sec)

借助 INFORMATION_SCHEMA 中的表 也能查看表或列的注釋。

比如查看表的注釋:

SELECT table_comment 
FROM  information_schema.tables 
WHERE table_name = 'test_comment'; 

執行結果:

mysql> SELECT table_comment
  -> FROM  information_schema.tables
  -> WHERE table_name = 'test_comment';
+---------------+
| TABLE_COMMENT |
+---------------+
| 表的注釋   |
+---------------+
1 row in set (0.01 sec)

查看列的注釋:

SELECT column_comment 
FROM  information_schema.columns 
WHERE column_name = 'col1'; 

執行結果:

mysql> SELECT column_comment
  -> FROM  information_schema.columns
  -> WHERE column_name = 'col1';
+----------------+
| COLUMN_COMMENT |
+----------------+
| 列的注釋    |
+----------------+
1 row in set (0.00 sec)

注釋的更新
對已經存在的表和列,可通過相應的更新修改操作來添加注釋。

列注釋的添加,更新
CHANGE 和 MODIFY 等效,區別在于 CHANGE 重寫定義列,需要書寫完整的列定義,包括新的列名稱,即使你并不想修改列的免,而 MODIFY 則不用指定新的列名稱。

通過 CHANGE 語法:

mysql> ALTER TABLE test_comment CHANGE col1 col1 INT COMMENT '列的注釋2';
Query OK, 0 rows affected (0.02 sec)
Records: 0 Duplicates: 0 Warnings: 0

通過 MODIFY 語法:

mysql> ALTER TABLE test_comment MODIFY col1 INT COMMENT '列的注釋2';
Query OK, 0 rows affected (0.02 sec)
Records: 0 Duplicates: 0 Warnings: 0

查看修改結果:

mysql> SHOW CREATE TABLE test_comment\G
*************************** 1. row ***************************
    Table: test_comment
Create Table: CREATE TABLE `test_comment` (
 `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
 `col1` int(11) DEFAULT NULL COMMENT '列的注釋2',
 PRIMARY KEY (`id`),
 UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='表的注釋'
1 row in set (0.00 sec)

表注釋的添加,更新
通過 ALTER TABLE 來完成對表注釋的添加和更新。

mysql> ALTER TABLE test_comment comment '表的注釋2';
Query OK, 0 rows affected (0.01 sec)
Records: 0 Duplicates: 0 Warnings: 0

查看更新結果:

mysql> SHOW CREATE TABLE test_comment\G
*************************** 1. row ***************************
    Table: test_comment
Create Table: CREATE TABLE `test_comment` (
 `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
 `col1` int(11) DEFAULT NULL COMMENT '列的注釋2',
 PRIMARY KEY (`id`),
 UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='表的注釋2'
1 row in set (0.00 sec)

注釋的刪除
更新注釋時指定為空即可。

mysql> ALTER TABLE test_comment COMMENT '';
Query OK, 0 rows affected (0.01 sec)
Records: 0 Duplicates: 0 Warnings: 0

mysql> ALTER TABLE test_comment MODIFY col1 INT COMMENT '';
Query OK, 0 rows affected (0.01 sec)
Records: 0 Duplicates: 0 Warnings: 0

查看刪除結果:

mysql> SHOW CREATE TABLE test_comment\G
*************************** 1. row ***************************
    Table: test_comment
Create Table: CREATE TABLE `test_comment` (
 `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
 `col1` int(11) DEFAULT NULL,
 PRIMARY KEY (`id`),
 UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci
1 row in set (0.00 sec)

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

会东县| 昭觉县| 衡山县| 赤峰市| 胶州市| 海阳市| 乐亭县| 望城县| 忻州市| 灵川县| 扎兰屯市| 华蓥市| 赣榆县| 荥经县| 漳平市| 嘉鱼县| 巴塘县| 潼关县| 吴忠市| 民丰县| 疏勒县| 江口县| 商洛市| 峨眉山市| 德格县| 龙州县| 镇平县| 南城县| 栾川县| 敦化市| 杭锦后旗| 葵青区| 宁明县| 玛沁县| 公安县| 连江县| 都安| 高州市| 松桃| 北票市| 镇平县|