InterviewSolution
Saved Bookmarks
| 1. |
How To Get A List Of Indexes Of An Existing Table? |
|
Answer» If you want to see the index you have just CREATED for an existing table, you can use the “SHOW INDEX FROM tableName” command to get a LIST of all INDEXES in a given table. If you want to see the index you have just created for an existing table, you can use the “SHOW INDEX FROM tableName” command to get a list of all indexes in a given table. |
|