Under Omaha Cash Player Statistics, it really doesnt matter what my SQL code is, it always reports
the same global hero stats based on the Filters (5-6 players at table for example).
Example SQL could be:
- Code: Select all
omaha_hand_player_statistics.id_hand in (SELECT omaha_hand_player_statistics.id_hand from player,
omaha_hand_player_statistics WHERE player.id_player = omaha_hand_player_statistics.id_player and player.val_icon_omaha=1
and omaha_hand_player_statistics.position=8 )
I could change it to something impossible like:
- Code: Select all
omaha_hand_player_statistics.id_hand in (SELECT omaha_hand_player_statistics.id_hand from player,
omaha_hand_player_statistics WHERE player.id_player = omaha_hand_player_statistics.id_player and player.val_icon_omaha=999
and omaha_hand_player_statistics.position=999 )
and the Report Stats will look identical..
This is not exclusive to using the player.val_icon_omaha stat either.
- Code: Select all
omaha_hand_player_statistics.id_hand in (SELECT omaha_hand_player_statistics.id_hand from player, omaha_hand_player_statistics
WHERE player.id_player = omaha_hand_player_statistics.id_player and omaha_hand_player_statistics.flg_p_open and omaha_hand_player_statistics.flg_p_first_raise and
omaha_hand_player_statistics.position=1 )
this code can be changed and the reports generated will not change.
The Omaha Cash Hand section seems to work fine.
