- Code: Select all
#Player" IN (x,y)
And toggling the "filter on active player" filter
This is filtering all the hands the two players are in, but I'd like to be more specific, namely filter out where one of those player 3bet, how can i do it?
Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators
#Player" IN (x,y)cash_hand_player_statistics.id_hand in (SELECT chps.id_hand from cash_hand_player_statistics chps, player p where NOT chps.flg_p_3bet and chps.id_player = p.id_player and p.player_name = 'Villain')NOT chps.flg_p_3bet
chps.flg_p_3bet chps.flg_p_first_raise and chps.flg_p_open_opp4StarGen wrote:I haven't tried the query but from my understanding the query filter out hands that player A have played against player B in a specific spot, unfortunately that's not what I have to do.
4StarGen wrote:I have a group of 10 players that are constantly colluding, so I need a hand report where one of those 10 players (let's call them p1,p2,p3...) have raised RFI for example in general
cash_hand_player_statistics.id_hand in (SELECT chps.id_hand from cash_hand_player_statistics chps, player p where chps.flg_p_first_raise and chps.flg_p_open_opp and chps.id_player = p.id_player and p.player_name = 'Villain')Flag_Hippo wrote:4StarGen wrote:I haven't tried the query but from my understanding the query filter out hands that player A have played against player B in a specific spot, unfortunately that's not what I have to do.
The expression filter is hand specific and not player specific. For example if your hand report is for 'Player A' and if 'Player B' is inserted into the expression filter then you will see the hands that 'Player B' raised first in from the perspective of 'Player A'.4StarGen wrote:I have a group of 10 players that are constantly colluding, so I need a hand report where one of those 10 players (let's call them p1,p2,p3...) have raised RFI for example in general
If you make the changes that I suggested then this expression will filter for hands where the named player raised first in:
- Code: Select all
cash_hand_player_statistics.id_hand in (SELECT chps.id_hand from cash_hand_player_statistics chps, player p where chps.flg_p_first_raise and chps.flg_p_open_opp and chps.id_player = p.id_player and p.player_name = 'Villain')
Return to Custom Stats, Reports and HUD Profiles
Users browsing this forum: No registered users and 11 guests