Skip to content

Instantly share code, notes, and snippets.

@nikita-barsukov
Created August 18, 2014 21:17
Show Gist options
  • Save nikita-barsukov/f955544047b1679e5f54 to your computer and use it in GitHub Desktop.
Save nikita-barsukov/f955544047b1679e5f54 to your computer and use it in GitHub Desktop.
SELECT (route ->> 'lng')::float AS lng,
(route ->> 'lat')::float AS lat,
id AS endo_id,
TYPE
FROM
( SELECT json_array_elements(route) route,
id,
TYPE
FROM workouts LIMIT 5) w;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment