gpt4 book ai didi

mysql - 连接两个表不确定连接使用

转载 作者:行者123 更新时间:2023-11-29 03:10:28 24 4
gpt4 key购买 nike

我必须从两个 SQL 表中获取数据,但我不确定要使用什么连接,而且相同的表具有相同的 customers_id 表,我会使用内部连接吗?

table - customers

customers_id
customers_firstname
customers_lastname
customers_email_address

table - orders


customers_id
customers_street_address
customers_suburb
customers_city
customers_postcode
customers_state
customers_country

最佳答案

这取决于您想要的结果。如果您想要 Customers 中的每条记录,而不管订单中是否有匹配的记录,您可以使用 LEFT OUTER JOIN。如果不是,您将使用 INNER JOINThis is the article我通常会向人们推荐有关连接的基本解释。

INNER JOIN 看起来像这样:

SELECT c.customers_id, 
c.customers_firstname,
c.customers_lastname,
o.customers_street_address,
o.customers_city,
o.customers_postcode,
o.customers_state
FROM customers as c
INNER JOIN orders as o
ON c.customers_id = o.customers_id

我故意没有做 select *。尝试养成只从表格中选择所需列而不是所有列的习惯。

关于mysql - 连接两个表不确定连接使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9255688/

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