1

これは、Sequel Pro の特定のテーブルの構造です。

Sequel Pro テーブル

これは、コマンド ラインで表示されるのと同じテーブル構造です。

MySQL コマンドライン

の出力は次のSHOW CREATE TABLE field_data_field_checklist_statusとおりです。

| field_data_field_checklist_status | 
CREATE TABLE `field_data_field_checklist_status` (
  `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  `revision_id` int(10) unsigned DEFAULT NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
  `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  `field_checklist_status_value` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`entity_type`,`entity_id`,`deleted`,`delta`,`language`),
  KEY `entity_type` (`entity_type`),
  KEY `bundle` (`bundle`),
  KEY `deleted` (`deleted`),
  KEY `entity_id` (`entity_id`),
  KEY `revision_id` (`revision_id`),
  KEY `language` (`language`),
  KEY `field_checklist_status_value` (`field_checklist_status_value`)
) 
ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for field 7 (field_checklist_status)' |

私は、MySQL コマンド ライン テーブル構造が正確なものであると確信しています。これは Drupal フィールド テーブルです。

なぜ矛盾が生じるのか誰か知っていますか?

4

1 に答える 1

1

entity_type列として持つ主キーと、それを列として持つ複数キーの両方があるのでしょうか? その場合、 の値Keyがあいまいになり、矛盾が説明されます。

MySQL でキーを検査する最良の方法は、実行することです

SHOW CREATE TABLE field_data_field_checklist_status;

実際のキーとその中の列の順序が表示されます。

于 2015-05-01T18:02:52.130 に答える