2017-05-13 108 views
0

我們是否需要將主鍵添加到多列索引?或者它會自動放在那裏?我們是否需要將主鍵添加到多列索引?

ALTER TABLE `wp_posts` 
    ADD PRIMARY KEY (`ID`), 
    ADD KEY `post_name` (`post_name`(191)), 
    ADD KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), 
    ADD KEY `post_parent` (`post_parent`), 
    ADD KEY `post_author` (`post_author`); 
+0

索引結構取決於正在使用的存儲引擎。 –

+0

你能解釋清楚嗎? – Narutokage

+0

。 。 https://dev.mysql.com/doc/refman/5.7/en/storage-engines.html。 –

回答

相關問題