Texas Hold'em

How often does AK flop top pair or better?

AhKh on two-tone, unpaired flops — top-pair-or-better frequency and average flush outs.

The PQL query

select count(minFlopHandCategory(hero, toppair)) as top_pair_or_better,
       avg(outsToHandType(hero, flop, flush)) as avg_flush_outs
from game='holdem',
     hero='AhKh',
     villain='**'
where boardsuitcount(flop) >= 2 and not pairedBoard(flop)

minFlopHandCategory(hero, toppair) counts flops of top-pair-or-better; the where clause restricts to two-tone, unpaired boards.

Run this query in the PQL playground →

PQL runs entirely in your browser — no install or account. New to it? See the PQL syntax reference, open the PQL engine, or browse all recipes.

More recipes

Go beyond queries — study real PLO solutions

Preflop ranges, postflop strategy and practice mode across all 1,755 PLO flop textures. Free tier, no card required.

Try SolvePLO Free