使用MYOB数据库我想查询两个表。
我发生了以下内部联接,并且它在ShippingMethodID之间链接。
INNER JOIN ShippingMethods ON Sales.ShippingMethodID = ShippingMethods.ShippingMethodID
我想在ShippingMethods表中使用一个名为ShippingMethod的字段,该字段具有实际送货方式的字符串值。
在我的WHERE部分中,我想测试ShippingsMethods.ShippingMethod = Post
,例如。但是我的销售表,我只有ID可供使用,而且我从不确定索引编号。
如何运行将两个表链接到所需值的WHERE语句?
答案 0 :(得分:4)
您还可以将条件添加到联接
INNERJOIN ShippingMethods ON (Sales.ShippingMethodID = ShippingMethods.ShippingMethodID
AND ShippingsMethods.ShippingMethod = 'Post')