Hi K A,
you need a join condition instead of a filter condition.
SQL server executes a query in several steps : join conditions are executed on the to be joined table before producing the result table of the join, filter conditions are executed on the result table of the join, reducing the result set after the join.
So remove the filter, and add it as a join condition

Dorine