Find unused indexes (query)
SQL
Hard
4 views
Problem Description
Write a query idea to list indexes that are not used often. Keep it simple and generic.
Sample Test Case
Input:
DB metadata tables
Constraints
DB-specific; show a general metadata read
Official Solution
SELECT * FROM information_schema.statistics;
Solutions (0)
No solutions submitted yet. Be the first!
No comments yet. Start the discussion!