- Code: Select all
sum(if[(select 1
from tourney_hand_player_statistics hero
where hero.id_hand = tourney_hand_player_statistics.id_hand
and hero.flg_hero
and hero.position = 9
and hero.flg_steal_opp)])
But maybe I'm still confused
Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators
sum(if[(select 1
from tourney_hand_player_statistics hero
where hero.id_hand = tourney_hand_player_statistics.id_hand
and hero.flg_hero
and hero.position = 9
and hero.flg_steal_opp)])
BillGatesIII wrote:I thought pt4pt4pt4 only wants to count the times hero had the opportunity to steal from the small blind against villain. And that translates into this
But maybe I'm still confused
sum(if[cash_hand_player_statistics.flg_steal_att and exists
(select 1
from cash_hand_player_statistics hero
where hero.id_hand = cash_hand_player_statistics.id_hand
and hero.flg_hero
and hero.position = 8), 1, 0])
sum(if[cash_hand_player_statistics.flg_steal_opp and exists
(select 1
from cash_hand_player_statistics hero
where hero.id_hand = cash_hand_player_statistics.id_hand
and hero.flg_hero
and hero.position = 8), 1, 0])
select 1
from tourney_hand_player_statistics hero
where hero.id_hand = tourney_hand_player_statistics.id_hand
and hero.flg_hero
and hero.flg_steal_att
and hero.position = 9
Return to Custom Stats, Reports and HUD Profiles
Users browsing this forum: No registered users and 5 guests