Originally posted by xkwlx
My English still is not perfect yet, so despite I know each word, I don't understood a meaning this sentence, but I will try to relate to what you wrote after all.
It was just a very bad joke about a typo you made:
I don,t have any problems
Without alcohol you don't have the strenght to lift the comma up to it's place so it could be an apostrophe. I know very bad situational humor...
Can you explain me exactly, how to use HMQL, to be honest I see this first time and I never use that
I saved my preflop ranges in a spread sheet so I can copy paste the requests (kind of filters) and look then up. For me the filters are very inconvenient. Now the bad news about HMQL - it's documentation is 52pages long...
But let's make a short example. For some reason you want to know how often you missed the opportunity to open raise T9s, 89s and 87s today.
select * from hands where (HoleCardString="T9s" OR HoleCardString="98s" OR HoleCardString="87s") AND (handtimestamp > {d "2018-07-28"}) AND FacingUnopenedPotPreflop = TRUE and didvpip = FALSE
If the list is empty good else you see how often you where wrong. Maybe an other helpful expression to begin with would be only situiation UTG
PositionAsInt=1
Then you could switch around the idea and compile a list of hands you shouldn't raise bud have. I think this is already a good enough starting point to see if this is indeed something for you too or not at all.
Good luck!

