Login
Remember
Register
Ask a Question
How can you see all indexes defined for a table?
0
votes
asked
Jan 14, 2024
in
Sql
by
AdilsonLima
How can you see all indexes defined for a table?
sql-interview-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 14, 2024
by
AdilsonLima
Indexes are defined for the table by:
SHOW INDEX FROM <tablename>;
...