4StarGen wrote:Subqueries cannot be cached
So if i happend to create them and ren a full custom cache...Would the process freeze at some point? should i even start a custom cache?
Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators
4StarGen wrote:Subqueries cannot be cached
5aaa wrote:I've read through this thread a few times now and still can't get my head around this stuff.
I'd like to make a simple '3bet vs hero' stat, when hero is the BTN (making a BTN steal attempt), and villain is either of the blinds. If someone could tell me how, or point me to the relevant post(s) in this thread, I'd really appreciate it.
4StarGen wrote:5aaa wrote:I've read through this thread a few times now and still can't get my head around this stuff.
I'd like to make a simple '3bet vs hero' stat, when hero is the BTN (making a BTN steal attempt), and villain is either of the blinds. If someone could tell me how, or point me to the relevant post(s) in this thread, I'd really appreciate it.
Post your tries, someone will help
sum(if[cash_hand_player_statistics.flg_blind_def_opp and lookup_actions_p.action LIKE 'R%' and exists
(select 1
from cash_hand_player_statistics hero
where hero.id_hand = cash_hand_player_statistics.id_hand
and hero.flg_hero
and hero.position = 0), 1, 0])
sum(if[cash_hand_player_statistics.flg_blind_def_opp and exists
(select 1
from cash_hand_player_statistics hero
where hero.id_hand = cash_hand_player_statistics.id_hand
and hero.flg_hero
and hero.position = 0), 1, 0])
sum(if[(now() at time zone 'GMT') - (interval '3 hours') < cash_hand_player_statistics.date_played AND cash_hand_player_statistics.flg_p_3bet_opp and exists
(select 1
from cash_hand_player_statistics hero
where hero.id_hand = cash_hand_player_statistics.id_hand
and hero.flg_hero
and hero.flg_p_first_raise
), 1, 0])
sum(if[(now() at time zone 'GMT') - (interval '3 hours') < cash_hand_player_statistics.date_played AND cash_hand_player_statistics.flg_p_3bet_opp and exists
(select 1
from cash_hand_player_statistics hero
where hero.id_hand = cash_hand_player_statistics.id_hand
and hero.flg_hero
and hero.flg_p_first_raise
), 1, 0])
Return to Custom Stats, Reports and HUD Profiles
Users browsing this forum: No registered users and 15 guests