Concept Flow - INNER JOIN syntax
Start with Table A
Start with Table B
Compare rows from A and B
Match rows where join condition is true
Combine matched rows into one result row
Output combined rows as result set
End
INNER JOIN takes two tables, compares rows based on a condition, and outputs only rows where the condition matches.