In my Postgresql database I have created a table called NAV_DATA with five columns:
id (PKEY)
,name (VARCHAR)
,call_type (VARCHAR)
,date_created (date)
For these columns I have the csv file which the delimiter TAB \t and Quotechar ".
It also has some empty fields in middle column.
How to allow to accept null values in copy command?
I want to insert the columns (name, call_type, date_created). I don't have the field id in my csv.
How to copy specific columns into the DB?
The issue is also with delimiter TAB \t?