How can I convert a string to a double precision in PostgreSQL ?
I tried something like :
update points set latitude2 = cast(latitude as double) ;
where latitude is a string and latitude2 is a double. I just can't get it to work.
How can I convert a string to a double precision in PostgreSQL ?
I tried something like :
update points set latitude2 = cast(latitude as double) ;
where latitude is a string and latitude2 is a double. I just can't get it to work.
double is not a postgres data type:
select cast('324342' as double);ERROR: type "double" does not exist LINE 1: select cast('324342' as double); ^
but double precision is:
select cast('132342' as double precision);| float8 | | :----- | | 132342 |
So try:
update points set latitude2 = cast(latitude as double precision) ;
if you prefer, you can use float * instead, because according to the docs:
float with no precision specified is taken to mean double precision
select cast('132342' as float);| float8 | | :----- | | 132342 |
db<>fiddle here
* or float(n) where 25<=n<=53 because that is also taken to mean double precision