Is there a way to count the number of hands I have stored in my database?
If it is, is it also possible to count the number of hands per stakes?
Thanks.
Cart :Is there a way to count the number of hands I have stored in my database?
If it is, is it also possible to count the number of hands per stakes?
Thanks.
Kewl! Now how can I count just the NL100 hands, for example?
you have to play around with the SQL-query.
if you know sql: do the same query, group by gametype and left join with "gametypes".
if you downt know how sql works, tell me and i'll look at the query tomorrow.
ok, that does it:
Code:SELECT gametypes.gametypedescription,count(*) FROM pokerhands LEFT JOIN gametypes ON pokerhands.gametype_id = gametypes.gametype_id GROUP BY gametypes.gametypedescription