InterviewSolution
Saved Bookmarks
| 1. |
Give the command to see the indexes on a table. |
|
Answer» SHOW INDEX ON table_name This will list all the indexes created on any of the columns in the table table_name. |
|