gpt4 book ai didi

PHP MYSQL JOIN显示

转载 作者:行者123 更新时间:2023-11-30 21:38:38 25 4
gpt4 key购买 nike

我在 MYSQL 中有多个表,都有 Customer_ref 和 Customer_name 字段,我正在尝试解决其中一个表中的某些客户名称不同的问题。我已经编写了一个连接来显示来自两个表的信息是否可以在连接中显示两个 Customer_names?例如:

while($row_join = mysqli_fetch_array($result_sqlUpdateCust_v_lists)) {
echo $row_join['compliance_customers.Customer_name']
. " | "
. $row_join['cust_v_lists.Customer_name']
. "<br>";
}

也许这是不可能的,但如果可以的话,我会让事情变得更快。我可能必须将一组数据加载到一个数组中,并将该数组与另一个表进行比较。

最佳答案

根据@madhurbhaiya 的精彩评论通过 Aliasing 解决:

SELECT compliance_customers.Customer_name, 
compliance_customers.Customer_ref,
cust_v_lists.Customer_name AS listsName
FROM cust_v_lists
INNER JOIN compliance_customers ON compliance_customers.Customer_ref = cust_v_lists.Customer_ref
WHERE Live = 'Yes'

关于PHP MYSQL JOIN显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52757803/

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