作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用外键链接我的 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/
我是一名优秀的程序员,十分优秀!