Unfortunately, I don't know *any* SQL.
I would like to create a stat "min-raised flop." I first create a column named c_f_min_raise with expression
sum(if[ (holdem_hand_player_detail.amt_f_raise_made=(holdem_hand_player_detail.amt_f_bet_facing*2) AND holdem_hand_player_detail.amt_p_raise_facing > 0), 1 , 0])
and then create a statistic with expression
cnt_f_min_raise
and format /%.2f. I do this trying to test if I correctly count the absolute number of min-raises (of course, I want to make this a percentage later on to have a stat that describes what percentage of the time a player min-raises when given the opportunity).
The results of this exercise appear to be garbage. Of course, I know the saying "garbage in, garbage out" but I cannot figure what's the garbage I put in :lol:
Any pointers on how to do this right?
