gpt4 book ai didi

列值的 Mysql Left Join Condition 以

转载 作者:行者123 更新时间:2023-11-29 04:32:46 25 4
gpt4 key购买 nike

我试图根据 Type 列中的值以哪个字符开头来左连接两个不同的表。

例如:
如果 type 列的值以 's' 开头 => Left Join table a
如果 type 列的值以 'g' => Left Join table b

开头

我如何创造这个条件?

最佳答案

你可以在下面通过在 ON 子句中应用条件来尝试

select * from tablename x
left join tableA y on x.id=y.id and x.type like 's%'
left join tableB z on x.id=z.id and x.type like 'g%'

关于列值的 Mysql Left Join Condition 以,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55220060/

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