What is the purpose of the 'JOIN' operation in SQL?
Correct: B
The 'JOIN' operation in SQL combines rows from two or more tables based on a related column. This allows you to retrieve data from multiple tables in a single query. Filtering is done with `WHERE`, sorting with `ORDER BY`, and insertion with `INSERT`.