Discuss how to create custom stats, reports and HUD profiles and share your creations.
Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators
by Dan_Jazz_Man » Fri Jul 17, 2026 3:15 pm
Would this be a correct query to count the number of times a player faces a delay CB on the turn?
- Code: Select all
sum(if[char_length(cash_hand_summary.str_aggressors_p) >= 2 and char_length(cash_hand_summary.str_aggressors_t) >= 1 and lookup_actions_f.action = 'X' and cash_hand_player_statistics.amt_t_bet_facing > 0 and substring(cash_hand_summary.str_aggressors_t from 1 for 1)::int = substring(cash_hand_summary.str_aggressors_p from '.$')::int, 1, 0])
And for 3Bet+ pot I'd need to use
- Code: Select all
char_length(cash_hand_summary.str_aggressors_p) >= 3
Thanks!
-
Dan_Jazz_Man
-
- Posts: 476
- Joined: Sun Feb 03, 2008 5:58 pm
by Flag_Hippo » Mon Jul 20, 2026 6:20 am
Dan_Jazz_Man wrote:Would this be a correct query to count the number of times a player faces a delay CB on the turn?
- Code: Select all
sum(if[char_length(cash_hand_summary.str_aggressors_p) >= 2 and char_length(cash_hand_summary.str_aggressors_t) >= 1 and lookup_actions_f.action = 'X' and cash_hand_player_statistics.amt_t_bet_facing > 0 and substring(cash_hand_summary.str_aggressors_t from 1 for 1)::int = substring(cash_hand_summary.str_aggressors_p from '.$')::int, 1, 0])
Yes.
Dan_Jazz_Man wrote:And for 3Bet+ pot I'd need to use
- Code: Select all
char_length(cash_hand_summary.str_aggressors_p) >= 3
Yes although those hands are already included in your original expression. You might want that but if you want single raised pots and 3bet+ pots separated then the first expression will need changing to:
- Code: Select all
char_length(cash_hand_summary.str_aggressors_p) = 2
-
Flag_Hippo
- Moderator
-
- Posts: 17055
- Joined: Tue Jan 31, 2012 7:50 am
by Dan_Jazz_Man » Thu Jul 23, 2026 4:53 pm
Thank you, Flag_Hippo
-
Dan_Jazz_Man
-
- Posts: 476
- Joined: Sun Feb 03, 2008 5:58 pm
Return to Custom Stats, Reports and HUD Profiles
Users browsing this forum: No registered users and 13 guests