Open Side Menu Go to the Top
Register
Can I lookup a hand based on hand number in pokertracker 3? Can I lookup a hand based on hand number in pokertracker 3?

11-26-2010 , 07:35 PM
I went through pt3 and wrote down some hand numbers to review later - now I'm starting to realize that I have no idea how to view by hand #. Fail.

Am i screwed?

(yes I know, mark for review - but that's tough since there are previously marked hands for review already)
Can I lookup a hand based on hand number in pokertracker 3? Quote
11-27-2010 , 03:19 AM
Code:
SELECT holdem_hand_histories.history
FROM holdem_hand_histories, holdem_hand_summary
WHERE holdem_hand_histories.id_hand = holdem_hand_summary.id_hand
AND holdem_hand_summary.hand_no = 13169473354
If you can open up your database in pgAdminIII, this query will return the hand histories you desire. Just replace the example number I have in green with your own.
Can I lookup a hand based on hand number in pokertracker 3? Quote
11-27-2010 , 04:10 AM
ty sir, works like a charm.
Can I lookup a hand based on hand number in pokertracker 3? Quote

      
m