TASK 11 – SQL INTERVIEW EXPLANATION

1. INNER JOIN
- Fetch matching records from both tables

2. LEFT JOIN
- Returns all rows from left table even if no match

3. GROUP BY
- Used with aggregate functions like COUNT, AVG

4. Subquery
- Query inside another query

KEY INTERVIEW LINE:
'I use joins to avoid data duplication and subqueries when filtering aggregated data.'
