服务器之家

服务器之家 > 正文

MySQL一个索引最多有多少个列?真实的测试例子

时间:2019-10-30 17:37     来源/作者:mysql教程网

最多16列。 

create table test ( 
f1 int, 
f2 int, 
f3 int, 
f4 int, 
f5 int, 
f6 int, 
f7 int, 
f8 int, 
f9 int, 
f10 int, 
f11 int, 
f12 int, 
f13 int, 
f14 int, 
f15 int, 
f16 int, 
f17 int 
); 

create index idx_test_16 on test (f1,f2,f3,f4,f5,f6,f7,f8,f9,f10,f11,f12,f13,f14,f15,f16); 
create index idx_test_17 on test (f1,f2,f3,f4,f5,f6,f7,f8,f9,f10,f11,f12,f13,f14,f15,f16,f17); 

运行结果如下: 


mysql> create table test ( 
-> f1 int, 
-> f2 int, 
-> f3 int, 
-> f4 int, 
-> f5 int, 
-> f6 int, 
-> f7 int, 
-> f8 int, 
-> f9 int, 
-> f10 int, 
-> f11 int, 
-> f12 int, 
-> f13 int, 
-> f14 int, 
-> f15 int, 
-> f16 int, 
-> f17 int 
-> ); 
Query OK, 0 rows affected (0.06 sec) 

mysql> 
mysql> create index idx_test_16 on test (f1,f2,f3,f4,f5,f6,f7,f8,f9,f10,f11,f12,f13,f14,f15,f16); 
Query OK, 0 rows affected (0.02 sec) 
Records: 0 Duplicates: 0 Warnings: 0 

mysql> create index idx_test_17 on test (f1,f2,f3,f4,f5,f6,f7,f8,f9,f10,f11,f12,f13,f14,f15,f16,f17); 
ERROR 1070 (42000): Too many key parts specified; max 16 parts allowed 
mysql> 

标签:

相关文章

热门资讯

玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分 2019-06-21
男生常说24816是什么意思?女生说13579是什么意思?
男生常说24816是什么意思?女生说13579是什么意思? 2019-09-17
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情 2019-06-22
超A是什么意思 你好a表达的是什么
超A是什么意思 你好a表达的是什么 2019-06-06
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字 2019-06-05
返回顶部