select firstname,lastname
from table1 (nolock)
left outer join table2
on table1.ID=table2.ID
where table1.billingaddress like 'Lake street''
我正在尝试使用当 table1.billingaddress isnull 我需要将其替换为
table2.shippingaddress
select firstname,lastname
from table1 (nolock)
left outer join table2
on table1.ID=table2.ID
where case billingaddress isnull then shippingaddress like 'Lake street'
我没有得到想要的结果,请分享您的想法如何使用 sql 查询来实现它。