by kraada » Thu Mar 15, 2012 4:56 pm
Yes, use the following filter in the blue Filters area to filter to only hands like this:
cash_hand_player_statistics.id_hand in (SELECT chps.id_hand from cash_hand_player_statistics chps, cash_hand_player_detail chpd WHERE chps.id_hand = chpd.id_hand and chpd.flg_hero and chps.id_holecard in (1, 26)) AND cash_hand_player_statistics.id_hand in (SELECT chps.id_hand from cash_hand_player_statistics chps, cash_hand_player_detail chpd WHERE chps.id_hand = chpd.id_hand and not(chpd.flg_hero) and chps.id_holecard in (1, 26))
This will filter to all hands where hero was dealt AA or KK and some other player also showed AA or KK.