Answer the question
In order to leave comments, you need to log in
How to remove spaces in a PostgreSQL column?
There is a table (in PostgreSQL) with a column containing numbers (sums): 1,000.00; 20 000.00; 300.00; 400 000.00. The data type is text.
How to remove spaces in a column?
update table set column = replace(column, ' ', '');
- didn't work Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question