Hey MySQL, what's my heart rate?
I decided to follow what my colleagues are doing. Monitoring heart rate while running.
Miles to go ...: Heart Rate Monitors and Marathon Training
As I wrote before in this entry, all my heart rate data are stored in MySQL tables. This includes data from 2 sessions to know 2 kinds of 'heart rate'.
Miles to go ...: Heart Rate Monitors and Marathon Training
I'm planning to buy a heart rate monitor (HRM) to assist me. Read here to see why heart monitoring is beneficialBringing some science into running : Interconnectedness of all things
heart rate thresholds not to go above. So for longer distances taking much longer than an hour stay below 156 beat per minute and with 171 as my max heart rate
As I wrote before in this entry, all my heart rate data are stored in MySQL tables. This includes data from 2 sessions to know 2 kinds of 'heart rate'.
- Maximum Heart Rate(MHR)
I did pretty hard work out in which I climbed up stairs for 100 meters twice. - Resting Heart Rate(RHR)
I measured my heart rate while I was still in bed after 6 hours sleep.
mysql> select max(cast(MaxHR as UNSIGNED)),min(cast(AverageHR as UNSIGNED)) from tracklapmaster where AverageHR!=0; +------------------------------+----------------------------------+ | max(cast(MaxHR as UNSIGNED)) | min(cast(AverageHR as UNSIGNED)) | +------------------------------+----------------------------------+ | 185 | 46 | +------------------------------+----------------------------------+