gpt4 book ai didi

MySQL:获取表数据,但如果id匹配则加入另一个表

转载 作者:行者123 更新时间:2023-11-30 01:17:45 26 4
gpt4 key购买 nike

我的 table

pets
pet_lost

给我所有宠物其中user_id = 1...但如果pet_lost.pet_id = pets,还包括pet_lost数据。 id

我总是想引入 pets where user_id = 1,但我想在有连接的情况下访问 pet_lost 数据。 .

有道理吗?

最佳答案

您可以使用左外连接和适当的where子句将其转换为查询:

select *
from pets p left outer join
pet_lost pl
on pl.pet_id = p.id
where p.user_id = 1 or pl.pet_id is not null;

编辑:

您可以将其表述为:

select p.*
from pets p
where p.user_id = 1 or
p.id in (select pl.pet_id from pet_lost);

关于MySQL:获取表数据,但如果id匹配则加入另一个表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18884975/

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