gpt4 book ai didi

php - SELECT Distinct FROM 两个表。 MySQL

转载 作者:太空宇宙 更新时间:2023-11-03 12:11:57 25 4
gpt4 key购买 nike

我有 2 个不同的表,每个表都有一个名为 id_product 的列。如何在两个表中获取 id_field 的 DISTINCT 值?

tb_compare
-id_product

tb_product_field
-id_product
-id_field


$qasql1 = mysql_query("SELECT c1.*,
c2.DISTINCT(id_field) FROM tb_compare AS c1
INNER JOIN tb_product_field AS c2 ON c1.id_product=c2.id_product
WHERE c1.compareSession = '$sessionID' ORDER BY c1.compareID Desc "
);

谢谢!!

最佳答案

你可以使用union:

select id_product
from tb_compare
union
select id_product
from tb_product_field;

请注意,union 会删除列表中的重复行,因此 distinct 不是必需的。在这种情况下,一行仅包含一个值。

关于php - SELECT Distinct FROM 两个表。 MySQL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23912428/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com