SQL Tip: Always Filter Before Joining Bad practice: Joining huge tables first Good practice: Filter data first, then join Example: ```sql WITH filtered_sales AS ( SELECT * FROM sales WHERE year = 2025 ...