SHOW INDEX
command, like this:show index from node;
That example can be read as, "Show the indexes from the database table named
node
". It assumes that you have already selected a database table, so really, a full sequence of commands to show a MySQL database table index looks like this:Syntax variations
As you may have noticed from that last example, you don't have to typeshow index
; either of the following three commands will give you the same results:show index from node;
show indexes from node;
show keys from node;
No comments:
Post a Comment