I have a CSV file that contains a number of columns with t
/ f
values. I'm trying to write this data to Postgres using pgadmin.
The columns in the target table in postgres are set to type boolean which only accepts 'TRUE' 'FALSE'.
How might I convert these t
/ f
values to TRUE
/FALSE
in order that my table import doesn't fail. Any hints or other approaches to this problem would be appreciated.