gpt4 book ai didi

mysql - 如何从两个 SQL 表中进行选择

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

我正在尝试使用外键链接我的 SQL 表,然后使用 select 语句调用数据。我的表是

team table
team_id
name

match table
match_id
team1_id
team2_id
round

我想从匹配表中选择 match_id,其中 team1 的名称是“alpha”,team2 的名称是“bravo”,轮次是 1。我想我需要一个 JOIN,但有点卡在如何实现它上。

最佳答案

Try this:

select m.*
from team t inner join on match m on t.team_id = m.team1_id and t.team2_id
where t.name in ('alpha','bravo') and m.round = 1

关于mysql - 如何从两个 SQL 表中进行选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29574495/

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