Expression filters
Posted: Wed Jul 31, 2024 9:22 am
Which expression filter should i use to filter hands only against recreational players? I guess it must be something like <= 50 hands
https://staging.pokertracker.com/forums/
https://staging.pokertracker.com/forums/viewtopic.php?f=61&t=104035
cash_hand_player_statistics.id_hand in (select chps.id_hand from cash_hand_player_statistics chps, cash_cache cc where chps.id_player = cc.id_player group by chps.id_hand, chps.id_player having (sum(cc.cnt_hands) > 50 and not chps.flg_hero))