为了比较MySQL数据库中的两个特定行,我需要将它们一个显示在另一个之上。
我根据字段(product_id)进行选择。要检索我使用的一行:
SELECT * FROM
ps_product
WHERE id_product = 44
我还需要id = 29的产品系列。
我试过了:
SELECT * FROM
ps_product
WHERE id_product = 44 AND id_product = 29
但它没有用。
感谢您的帮助。提前谢谢。
答案 0 :(得分:2)
SELECT * FROM ps_product WHERE id_product=44 OR id_product=29
这是正确的语法。