我有两个表,我需要使用 where 子句。表格1
CustomerID Product
1 Car
2 Table
3 Golf
4 Foo
5 Yoo
表2
CustomeID Comment
2 Three items
3 Returned
4 Complaint
我有一个查询,它在 where 语句中有两个过滤器,如下所示
Select * from table1 a left
join table2 b on a.customerid= b.customerid
where b.comment<>'Returned' and b.comment not like 'Three%'
当我运行查询时,我只得到了一条记录。我希望它还返回不在 table2 中的两个 customerID(三个记录)