I have been trying to import data from a .csv file into a table (first time postgres /pgAdmin user) without success.
So I tried a simpler structure with only two columns as follows:
CREATE TABLE user
(
firstName text,
lastName text,
)
And this .csv:
firstName,lastName
Thomas,Johnson
My import configuration in pgAdmin4:
And the error I keep getting:
I tried changing text
to varying char
with enough char lenght without success..
Thank you for your help!