gpt4 book ai didi

php - 如何使用 MySQL 将三个表与条件相交?

转载 作者:行者123 更新时间:2023-11-29 09:12:57 24 4
gpt4 key购买 nike

我有3张 table

1.usertb

email funcarea

2.professiontb

email experience

3.generalinfo

email location

我想使用字段 电子邮件 将这三个表与 3 个条件(如 funarea = 2 和 经验>=3 和 结合起来) >位置 = '悉尼'

由于我是 SQL 初学者,所以我很想知道如何实现它。

最佳答案

select a.email,funarea,experience,location  from usertb a
left join professiontb b
on a.email = b.email
left join generalinfo c
on a.email = c.email
where
funarea = 2 and experience >=3 and location = 'Sydney'

关于php - 如何使用 MySQL 将三个表与条件相交?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5028126/

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