select a.ProductID
       ,a.OrderDate
       ,a.ConDate
       ,a.ClientName
       ,a.MName
       ,a.TPMouldID
       ,b.Mould_Img
from OrderFormArc as a 
left outer join  MouldInfo as b on a.ProductID=b.ProductID  
where  a.Order_BS='0' 
       and convert(varchar(10),a.OrderDate,120)  between '2005-09-01' and  '2005-09-09'
       and not exists(select 1 
                          from MouldInfo 
                              where ProductID=b.ProductID 
                                    and 不同值字段>b.不同值字段)
order by a.OrderDate desc,a.ClientName asc