MySql查看索引以及各字段含義


查看表的索引:

show index from userInfo(表名)

 

show index from 數據庫名.表名 

 

 

查看某表某一列上的索引使用下面的SQL語句:

show index from 數據庫名.表名 where column_name like '列名'
例如:
show index from userInfo where column_name like 'UUID'

 

查出來的數據(只列出幾個重要的:)

Table:          表的名稱

Non_unique:     是否唯一,0是,1否

Key_name:	索引名稱

Column_name:	對應列名稱

  

參考:https://blog.csdn.net/superdangbo/article/details/79283752

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM