I have a join on two tables defined as a left outer join so that all records are returned from the left hand table even if they don\'t have a record in the right hand table.
Yes, put the condition (called a predicate) in the join conditions
Select [stuff] From TableA a Left Join TableB b On b.Pk = a.Pk -- [Put your condition here, like this] And b.Column = somevalue