QuestionQ70
Database DesignWhich two commands display the indexes on the parts table in the manufacturing schema?
Choose two
- A DESCRIBE manufacturing.parts;
- B SELECT * FROM information_schema.statistics WHERE table_schema=’manufacturing’ AND TABLE_NAME=’parts’;
- C SHOW INDEXES FROM manufacturing.parts;
- D SELECT * FROM information_schema.COLUMN_STATISTICS;
- E EXPLAIN SELECT INDEXES FROM manufacturing.parts;
Community Discussion