I am trying to import data into my postgres table using \copy from a CSV file The data is as follows:
1,2,"First Line \n Second Line", "Some other data"
My motive is to preserve '\n' while importing the data.
The following works:
insert into table (col1, col2, col3, col4) values (1, 2, E'First Line \n Second Line', 'Some other data')
But how do I achieve the same result using \copy command?