Moderator: Moderators
SELECT
hhs.*
FROM
holdem_hand_summary hhs
WHERE
hhs.hand_no = 34457318254
kraada wrote:Is that date played during the time of another session? The date played data is taken from the hand history at import time.
If you don't see it in Sessions by Time, do you see it in Sessions by Table?
select
hh.*,
hhs.hand_no,
hhs.date_played,
player.id_player,
player.player_name,
det.seat,
( select c.hole_cards
from lookup_hole_cards c
where c.id_holecard = det.holecard_1 ) as hole_card_1,
( select c.hole_cards
from lookup_hole_cards c
where c.id_holecard = det.holecard_2 ) as hole_card_2
from
holdem_hand_histories hh INNER JOIN
holdem_hand_summary hhs ON
hh.id_hand = hhs.id_hand INNER JOIN
holdem_hand_player_detail det ON
hh.id_hand = det.id_hand INNER JOIN
player ON
det.id_player = player.id_player
where
player.player_name = 'astrodon'
and hhs.hand_no = 34457318254
order by hand_no
Users browsing this forum: No registered users and 8 guests