This article provides a comprehensive guide on how to identify and tune problematic queries using SQL EXPLAIN. It covers the following steps:
1. Tagging your application when connecting to the database for easy identification of problematic queries.
2. Identifying slow queries from your application using various methods such as DB console, slow query log, and plan attributes.
3. Introspecting the query plan and tuning performance with EXPLAIN.
4. Finding performance bottlenecks with EXPLAIN ANALYZE.
The article also provides examples of how to use these tools in CockroachDB, a distributed SQL database.