gpt4 book ai didi

php - 父子关系,无需使用PHP获取并重用返回值

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

我正在尝试在两个表之间建立关系。我可以通过使用 PHP 获取数据并在查询中再次使用返回值来完成我想要的操作。但据我研究,这似乎不是一个有效的方法。

当我使用 SQL 查询将赌注 #3 确定为 YES 时,如何获得中奖优惠券?

(应该返回 3 和 4)

优惠券表,

ID coupon_id bets bets_played  played_by
0 2 2 yes JOHN
1 2 3 no JOHN
2 3 1 yes JANE
3 3 3 yes JANE
4 4 3 yes SARAH
5 4 2 no SARAH

投注表,

ID  result
1 yes
2 no
3 NULL

谢谢。

最佳答案

select distinct c.*
from coupon c
join bets b on b.result = c.bets_played and b.result = 'yes'

关于php - 父子关系,无需使用PHP获取并重用返回值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34669592/

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