作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这适用于 Microsoft sql server management studio 2008
您好,我有以下运行比赛的数据:
Name /fav / odds /Place
John / 3rd / 5.21 / 1st
Bob / 1st / 3.11 / 2nd
paul / 6th /10.10 / 3rd
ken / 4th / 6.11 / 4th
ted / 7th /20.44 / 5th
julie/ 8th /100.00/ 6th
rob / 9th / 22.11/ 7th
rex /10th / 33.55/ 8th
rod / 2nd / 4.11 / 9th
nub / 5th / 7.34 / 10th
1) 我知道如何在没有其他条件的情况下显示第一个最爱 -> 结果:(Bob 1st/3.11/2nd)
2) 但是,只有当第三个最喜欢的(约翰第 3 次/5.21/1 次和 6 美元)赔率在 5 到 6 美元之间时,我如何显示第一个最喜欢的(鲍勃第 1 次/3.11/2 次),这是他们的目的去工作。
结果(鲍勃第一名/3.11/第二名)
最佳答案
试试这个,
select * from table1 where fav='1st'
and exists
(select name from
table1
where fav='3rd' and odd between 5 and 6)
关于mysql - 如何仅在 SQL Server 中第三喜欢位置赔率在 5 到 6 美元之间时显示第一喜欢位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27738038/
我是一名优秀的程序员,十分优秀!