Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
How can you see all indexes defined for a table?
Home
Sql
How can you see all indexes defined for a table?
asked
Jan 14
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
by
AdilsonLima
Indexes are defined for the table by:
SHOW INDEX FROM <tablename>;
...