gpt4 book ai didi

mysql - sql/mysql : What is the best method to complete this query

转载 作者:行者123 更新时间:2023-11-29 13:40:36 24 4
gpt4 key购买 nike

我已经处理了这个查询的大部分内容,除了两件事,一件大事,一是,一旦我将第四个表 [departments_tbl] 添加到查询中,当我将其返回时,我会返回大约 8K 行应该只有100左右。

请参阅附加的架构,没有复选标记,这些是我想要返回的字段。

这不会有帮助,但这只是我几乎已经完成的查询之一,直到 [department_tbl 被添加到混合中]

SELECT _n_cust_entity_storeid_15.entity_id, 
_n_cust_entity_storeid_15.email,
customer_group.customer_group_code,
departments.`name`,
departments.manager,
_n_cust_rpt_copy.first_name,
_n_cust_rpt_copy.last_name,
_n_cust_rpt_copy.last_login_date,
_n_cust_rpt_copy.billing_address,
_n_cust_rpt_copy.billing_city,
_n_cust_rpt_copy.billing_state,
_n_cust_rpt_copy.billing_zip
FROM _n_cust_entity_storeid_15 INNER JOIN customer_group ON _n_cust_entity_storeid_15.group_id = customer_group.customer_group_id
INNER JOIN departments ON _n_cust_entity_storeid_15.store_id = departments.store_id,
_n_cust_rpt_copy
ORDER BY _n_cust_rpt_copy.last_name ASC

我尝试过子查询、联接,但就是无法让它工作。

任何帮助将不胜感激。

架构注意,entity_idcust_id字段将是_ncust_rpt_copy表之间的链接>_n_cust_entity_storeid_15 表 enter image description here

最佳答案

您对最后一个表 _n_cust_rpt_copy 有一个交叉联接:

SELECT _n_cust_entity_storeid_15.entity_id, 
_n_cust_entity_storeid_15.email,
customer_group.customer_group_code,
departments.`name`,
departments.manager,
_n_cust_rpt_copy.first_name,
_n_cust_rpt_copy.last_name,
_n_cust_rpt_copy.last_login_date,
_n_cust_rpt_copy.billing_address,
_n_cust_rpt_copy.billing_city,
_n_cust_rpt_copy.billing_state,
_n_cust_rpt_copy.billing_zip
FROM _n_cust_entity_storeid_15 INNER JOIN
customer_group
ON _n_cust_entity_storeid_15.group_id = customer_group.customer_group_id INNER JOIN
departments
ON _n_cust_entity_storeid_15.store_id = departments.store_id join
_n_cust_rpt_copy
ON ???
ORDER BY _n_cust_rpt_copy.last_name ASC;

对我来说,正确的连接条件是什么并不明显,但一定有一些东西。

我可能猜他们至少包括该部门:

   _n_cust_rpt_copy
ON _n_cust_rpt_copy.department_name = departments.name and

关于mysql - sql/mysql : What is the best method to complete this query,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18136010/

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