I'm trying to find all hands where I have cold-called a 3bet preflop.
I have used these query conditions: enum_p_3bet_action='C' AND flg_p_ccall
But this doesn't give me the results that I want, for example with this kind of PF action:
1. UTG Raise
2. UTG+1 Folds
3. UTG+2 Calls
4. I Call (yes, so I do cold-call one raise)
5. (several folds)
6. SB 3-bets (this would be a squeeze, I guess)
7. UTG calls
8. I call (yes, I call a 3-bet but this is not my FIRST action)
So, this is not a hand that I would like to match my query; I would like to find only such hands where there has been a raise and a 3-bet before me and then I cold-call the 3-bet.
So this is what I would like to find:
1. UTG Raises
2. UTG+1 3-bets
3. I call
.... nevermind what happens afterwards
What more do I need to add to my query?
