1. 首页
  2. 数据库
  3. 其它
  4. MySQL一个索引最多有多少个列?真实的测试例子

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

上传者: 2021-01-31 08:24:27上传 PDF文件 17.58KB 热度 12次
最多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
下载地址
用户评论