Thanks WR.
I actually found that post yesterday and tried it in my Custom Report.
using SQL statement, subing holdem with omaha:
- Code: Select all
( 0 < (SELECT count(hhps2.id_hand) FROM holdem_hand_player_statistics hhps2 WHERE hhps2.id_hand = holdem_hand_player_statistics.id_hand AND hhps2.id_player = (SELECT p.id_player FROM player p WHERE player_name='name')) )
When I substite 'name' for a name with a digit in it (say '21OPPONENT'), it gives me an SQL error: "more than one row returned by a subquery used as an expression".
*EDIT*: I did get it to work with
alphabetical only screennames.
Let me try to explain a simple example of what I need to do:
I create advanced hole card filtering for myself (which really impressed with PT3 here btw), filter for position, # of players, etc.
So if im on button, I want to know when specific OPPONENT(s) either saw flop, or was in Big Blind, etc.
thanks.