首页 > 试题广场 >

MYSQL下,下述哪些语句可查看表tableA的索引

[单选题]
2021后端第二套
收起 展开详情
MYSQL下,下述哪些语句可查看表tableA的索引
  • show index from `tableA`
  • show index `tableA`
  • show create `tableA
  • show indexs `tableA`



none_unique表示索引中是否可以包含重复词
seq_index表示索引从哪个序号开始
编辑于 2022-05-03 17:42:00 回复(0)
show index from `tableA`
show keys from `tableA`
发表于 2021-10-05 18:14:47 回复(0)
查询一个表的索引 =》 show index from 表名
发表于 2021-04-26 23:20:19 回复(0)