A long journey in so many ways as former GHK Mini-rugby player Neil Gourley prepares to toe the line with the best 1500m runners at the World Championships in the Qatar’s capital city.
GHK are rightly proud of Neil’s former club mate Andrew Davidson’s progress in rugby as he makes his way as a professional with Glasgow Warriors but it’s also great to see Neil grasp the opportunity to compete at the very highest level in his sport.
Some might argue that Neil’s achievement is all the greater having had to overcome the genetic disadvantages of being the son of one of GHK’s slowest centres and current club president, Ronnie Gourley!
All at GHK wish Neil the very best for his heat which takes place at 8 pm on Thursday. Hopefully, there will be a few cheering on from the clubhouse at OA, and taking a little pride in the part GHK played in Neil’s sporting journey.
SELECT
r.id AS fixture_id,
r.competition_name,
r.date,
r.time,
r.team1,
r.team2,
r.season,
l1.image AS team1_logo,
l2.image AS team2_logo
FROM wp_e1b349da27_fixtures r
LEFT JOIN wp_e1b349da27_team_logo l1
ON LOWER(r.team1) = LOWER(l1.name)
LEFT JOIN wp_e1b349da27_team_logo l2
ON LOWER(r.team2) = LOWER(l2.name)
INNER JOIN wp_e1b349da27_crawler_index ci
ON r.id >= ci.start_id
AND r.id <= ci.end_id
AND ci.table_name = 'wp_e1b349da27_fixtures'
WHERE (LOWER(r.team1) LIKE LOWER('ghk %') OR LOWER(r.team2) LIKE LOWER('ghk %')) AND r.competition_name NOT LIKE '%(Women\'s)%' AND r.competition_name LIKE '%National League Division 1%' AND r.season = '2026-2027' AND r.id >= ci.start_id AND r.id <= ci.end_id AND ci.table_name = 'wp_e1b349da27_fixtures' AND STR_TO_DATE(ci.crawl_date, '%Y-%m-%dT%T') = (
SELECT MAX(STR_TO_DATE(crawl_date, '%Y-%m-%dT%T'))
FROM wp_e1b349da27_crawler_index
WHERE start_id > 0 AND end_id > 0
)
ORDER BY r.id ASC
LIMIT 1