从两个不同的产品中选择*

时间:2017-08-31 15:20:17

标签: php mysql

对不起terribel标题,但我希望有些人可以提供帮助

我刚刚创造了第二个品牌,因为我想在我的产品中使用多个品牌。

因此,我有这个获得1个品牌:

$get_brand_pro = "select * from products where product_brand='$brand_id'";

但我现在想知道如何获得更多, 我试过这个:

$get_brand_pro = "select * from products where product_brand='$brand_id' AND product_brand1='$brand_id'";

但它不起作用。

提前致谢

1 个答案:

答案 0 :(得分:1)

听起来你想要使用OR而不是AND如果你想要两者

$get_brand_pro = "select * from products where product_brand='$brand_id' OR product_brand1='$brand_id'";