SQL, postgres. I have a csv input file with columns like avg with some values as 5,0 or 6,0. When i export back the file it writes 5 and 6 instead. How do i keep my digits?
Edit: im exporting using COPY
SQL, postgres. I have a csv input file with columns like avg with some values as 5,0 or 6,0. When i export back the file it writes 5 and 6 instead. How do i keep my digits?
Edit: im exporting using COPY
Copyright © 2021 Jogjafile Inc.
Use the
numeric
datatype. This type keeps the original scale of the input, scale being defined in this context as : count of decimal digits in the fractional part (see http://www.postgresql.org/docs/current/static/datatype-numeric.html)Example:
Result: