Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Would this be possible with PT?

  • 23-04-2007 7:11pm
    #1
    Registered Users, Registered Users 2 Posts: 3,608 ✭✭✭


    Would it be possible to show all hands from all opponents that were shown down after they minraised preflop?


Comments

  • Registered Users, Registered Users 2 Posts: 99 ✭✭niborm


    Are you familiar with Access DBs? If you run this query in Access, I think it'll give you what you're looking for...

    SELECT players.screen_name, game_players.hole_card_1, game_players.hole_card_2, game_players.pre_flop_bet, game_level.game_level_big_bet
    FROM game_level INNER JOIN ([session] INNER JOIN (players INNER JOIN game_players ON players.player_id = game_players.player_id) ON session.session_id = game_players.session_id) ON game_level.game_level_id = session.game_level_id
    WHERE game_players.hole_card_1 Is Not Null AND game_players.hole_card_2 Is Not Null
    AND game_players.pre_flop_bet = 2 * game_level.game_level_big_bet


  • Registered Users, Registered Users 2 Posts: 2,563 ✭✭✭sikes


    niborm wrote:
    AND game_players.pre_flop_bet = 2 * game_level.game_level_big_bet

    i think that should be

    AND game_players.pre_flop_bet = game_level.game_level_big_bet
    but i havent tried it.


  • Registered Users, Registered Users 2 Posts: 99 ✭✭niborm


    sikes wrote:
    i think that should be

    AND game_players.pre_flop_bet = game_level.game_level_big_bet
    but i havent tried it.

    Think you're right Sikes. Although also haven't tried...


  • Registered Users, Registered Users 2 Posts: 2,563 ✭✭✭sikes


    you can also run sql commands through excel. pay a visit to the PT forums, loads of help there.


Advertisement