🏠 ホーム
ベンチマーク
📊 すべてのベンチマーク 🦖 恐竜 v1 🦖 恐竜 v2 ✅ To-Doリストアプリ 🎨 クリエイティブフリーページ 🎯 FSACB - アルティメットショーケース 🌍 翻訳ベンチマーク
モデル
🏆 トップ10モデル 🆓 無料モデル 📋 すべてのモデル ⚙️ 🛠️ Kilo Code モード
リソース
💬 💬 プロンプトライブラリ 📖 📖 AI用語集 🔗 🔗 有用なリンク
Advanced

Legacy SQL Refactoring

#sql #database-optimization #performance

Optimize a poorly performing SQL query with complex joins.

Analyze the provided PostgreSQL query which performs a recursive CTE operation on a table with 50 million rows. The current execution plan shows a Nested Loop that is causing severe performance degradation. Rewrite the query to eliminate the recursive CTE by using set-based operations or window functions. Additionally, recommend the exact indexing strategy required to support the new query structure, specifying index types (e.g., B-Tree, GIN) and the columns to include.