gpt4 book ai didi

mysql - SQL Mach 两表

转载 作者:行者123 更新时间:2023-11-29 08:27:33 27 4
gpt4 key购买 nike

我有 2 张 table 。

表1

  • 共有约 2700 行
  • 列:ID、NO、NAME

表2:

  • 共有约 300 行
  • 列:ID、NAME

地点:

Table1.NO = Table2.ID

我想列出 Table1(2700 行),但如果 Table1 不包含 Table2 的某些行,我想写“NA”

如何使用 SQL 做到这一点?

最佳答案

我假设您想输出 table2 中的名称(如果存在),在这种情况下:

SELECT 
a.id,
isnull(b.name, 'NA'),
a.name
FROM
table1 a
LEFT JOIN
table2 b
ON
a.no = b.id

将为您完成(我还输出了 table1 中的 id 和名称)。

编辑:

抱歉,在发布之前我没有看到 MySQL 标签。如果 isnull,则需要使用 coalesce 函数,如下所示:

SELECT 
a.id,
coalesce(b.name, 'NA'),
a.name
FROM
table1 a
LEFT JOIN
table2 b
ON
a.no = b.id

关于mysql - SQL Mach 两表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17525168/

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