I'am using PostgreSQL and PHPPgAdmin. I have data in the file ext.csv, and I'm using the COPY function to import the data. I have already made a table with 15 columns and imported my data.csv to this table via function copy.
The problem is that I can't identify my column table with query. For example:
select customer_name from gis
produces the error:
Query failed: ERROR: column "customer_name" does not exist LINE 1
Why this happen? I also checked in PHPPgAdmin and there the gis has a column and data.
Suggestions?
schemafrompublicin the database ?search_path? What's the output of\d gisin thepsqlclient? PostgreSQL version?