skip to Main Content

Postgresql – Postgres table import gives "Invalid input syntax for double precision"

I exported a postgres table as CSV: "id","notify_me","score","active","is_moderator","is_owner","is_creator","show_marks","course_id","user_id" 8,False,36,"A",False,True,True,True,2,8 29,False,0,"A",False,False,False,True,2,36 30,False,25,"A",False,False,False,True,2,37 33,False,2,"A",False,False,False,False,2,40 Then I tried to import it using pgadmin: But I ended up getting following error: I checked the values of Score column, but it doesnt contain value "A":…

VIEW QUESTION
Back To Top
Search