PDA

View Full Version : Tourney total rake payed



pmania
09-04-2009, 08:14 PM
Where or how can I see how much rake I payed on a pokerroom only for all the tournaments I played in total ?

Rvg72
09-05-2009, 11:58 PM
Sorry but there is no way to see this right now mainly because it has never been asked for and we didn't want to take up the extra screen space. It is stored in the DB so you could run a query like:

select sum(rake)/100.0 as TotalRake from tourneydata where tourneynumber in
(select tourneynumber from tourneyplayerdata where player_id in (select player_id from players where playername = 'ABC'))

Obviously change ABC to your player name

Roy