# | Operation | Cost | Actual Time |
---|
Situation | Optimization Tip |
---|---|
High loops, low rows | Investigate the outer loop — maybe it's joining without an index |
High rows, low loops | Could be okay if it's a single scan — try adding WHERE clauses or LIMIT |
High both | 🚨 Major red flag — possible cross joins or missing filters/indexes |