為什么MGR需要使用主鍵?針對這個問題,今天小編總結(jié)這篇有關(guān)MGR表的文章,希望能幫助更多想解決這個問題的朋友找到更加簡單易行的辦法。
創(chuàng)新互聯(lián)公司是一家專業(yè)提供五原企業(yè)網(wǎng)站建設(shè),專注與網(wǎng)站設(shè)計、成都網(wǎng)站設(shè)計、H5高端網(wǎng)站建設(shè)、小程序制作等業(yè)務(wù)。10年已為五原眾多企業(yè)、政府機構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)的建站公司優(yōu)惠進行中。
驗證MGR架構(gòu)表需要使用主鍵,不然插入數(shù)據(jù)會報錯。
MySQL> show tables;
+--------------+
| Tables_in_dd | +--------------+ | a | +--------------+ 1 row in set (0.00 sec) mysql> desc a; +-------+---------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +-------+---------+------+-----+---------+-------+ | id | int(11) | YES | | NULL | | +-------+---------+------+-----+---------+-------+ 1 row in set (0.00 sec) mysql> insert into a values(1); ERROR 3098 (HY000): The table does not comply with the requirements by an external plugin. mysql> alter table a add primary key (id); Query OK, 0 rows affected (0.02 sec) Records: 0 Duplicates: 0 Warnings: 0 mysql> desc a; +-------+---------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +-------+---------+------+-----+---------+-------+ | id | int(11) | NO | PRI | NULL | | +-------+---------+------+-----+---------+-------+ 1 row in set (0.01 sec) mysql> insert into a values(1); Query OK, 1 row affected (0.00 sec) mysql> insert into a values(1); Query OK, 1 row affected (0.00 sec) mysql> select * from a; +----+ | id | +----+ | 1 | +----+ 1 row in set (0.00 sec)
看完上述內(nèi)容,你們對MGR架構(gòu)表需要使用主鍵的原因大概了解了嗎?如果想了解更多相關(guān)文章內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!