… its `NAME` is PRIMARY. If the primary key is not defined InnoDB will use a unique secondary index as the primary. If there is… need to know what fields form the primary key. The matter is regardless at what position primary key fields are defined in CREATE TABLE…` ( `INDEX_ID` bigint(20) unsigned NOT NULL, `POS` int(10) unsigned NOT NULL, `COL_NAME` varchar(255) DEFAULT NULL, PRIMARY KEY (`INDEX_ID…
Post: InnoDB Full-text Search in MySQL 5.6 (part 1)
… NULL, `full_name` varchar(100) DEFAULT NULL, `details` text, PRIMARY KEY (`id`), FULLTEXT KEY `full_name` (`full_name`,`details`) ) ENGINE=InnoDB DEFAULT CHARSET…> CREATE TABLE dir_test_innodb4 (fts_doc_id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY); ERROR 1166 (42000): Incorrect column name ‘fts…

