I\'m trying the following query:
SELECT (json_data->\'position\'->\'lat\') + 1.0 AS lat FROM updates LIMIT 5;
(The +1.0 is just there
You must to cast the json value to text and then to float.
Try this:
(json_data #>> '{field}')::float