kraada wrote:This would actually show the times you 3-bet the minimum, is that what you wanted?
If you wanted times you open minraised, you would want:
sum(if[holdem_hand_player_detail.amt_p_raise_made = 2 * holdem_limit.amt_bb, 1, 0])
An open minraise is to exactly twice the big blind in all cases, and if you don't open minraise it can never be set that way otherwise.
i tried to translate it for my tournament HUD as
sum(if[tourney_holdem_hand_player_detail.amt_p_raise_made = 2 * tourney_holdem_limit.amt_bb, 1, 0])
that way worked fine for the limp stats i found here, but in this case i got the message, that this is no valid SQL.