用left join 就可以:select c.[UserName],c.[PhoneNum],c.[Address],c.[OrderNum],
       ct.[Express],ct.[ExpressNum],ct.[Operator],ct.[Goods]
from [ContactTable] c
left join [OrderInfoTable] ct
       on c.[OrderNum] = ct.[OrderNum]
where c.[OrderNum] = xxx