Hmm - I get the same problem.
I haven't made any Holdem Cash Session stats so I'm not sure what the problem is.
Try creating the same stat in Holdem Cash Player Statistics and see if it works there, and I'll try to work out what the problem is.
Moderator: Moderators
SELECT ht.table_name ,
hts.date_start ,
hts.date_end ,
hts.cnt_minutes,
hts.amt_won ,
hts.cnt_hands ,
hts.amt_rake,
(SUM ((
CASE
WHEN
(
hhs.id_site != 600
)
THEN 0
ELSE (
CASE
WHEN
(
hpd.amt_bet_p + hpd.amt_bet_f + hpd.amt_bet_t + hpd.amt_bet_r = 0
)
THEN 0
ELSE (
CASE
WHEN
(
hhs.amt_rake < 0.1
)
THEN 0
ELSE (
CASE
WHEN
(
hhs.amt_rake > 3.0
)
THEN 3.0
ELSE trunc(hhs.amt_rake*10)/100
END)
END)
END)
END) ))
FROM holdem_table ht ,
holdem_table_session_summary hts,
holdem_hand_summary hhs ,
holdem_hand_player_detail hpd
WHERE hts.id_site = 600
AND hts.id_player=41
AND ht.id_table = hts.id_table
AND hhs.id_table = ht.id_table
AND hhs.id_hand = hpd.id_hand
GROUP BY ht.table_name ,
hts.date_start ,
hts.date_end ,
hts.cnt_minutes,
hts.amt_won ,
hts.cnt_hands,
hts.amt_rake
ORDER BY date_end DESC;Return to Custom Stats, Reports, and SQL [Read Only]
Users browsing this forum: No registered users and 0 guests