If you have a Left Join on tables with a common field then the Using form is the way to go
select cmm.p_makat, t2.set_no from common.products as cmm left join tblweightstations as t2 USING (p_makat) WHERE cmm.p_makat='6435'
The left join will always return cmm.p_makat, and Null in set_no if there is no entry in t2.