我尝试使用两个共享相同字段名但没有成功的表来使用INNER JOIN创建SELECT。 我必须从SELECT中获取名为 tax 的字段的值,其中表 中的字段类型在表格上相同税
我现在所做的不起作用:
$stmt = $db->prepare("SELECT taxes
FROM taxes
INNER JOIN products
ON products.type = taxes.type");
$stmt->execute();
答案 0 :(得分:1)
你试过这样的左联?
SELECT t.taxes FROM taxes t Left JOIN products p ON p.type = t.type;