When I try to query from greenplum.Double quotes Including take time in select list of columns while querying to database.
Input DDL : Scenario is
CREATE TABLE "People" (
"ID" SERIAL NOT NULL,
"Email" TEXT NOT NULL,
PRIMARY KEY(id)
);
Error I get:
select * from people;
ERROR: relation "people" does not exist
LINE 1: select * from people;
Case : It's Ok to Manage when we have few columns. but also we have to deal with table having more than 150 columns and when i try to query for only 72 column for my select projection list. double quotes need to be include around each column. which takes more time to write query in editor.
Also, When talend ETL tool output the data it creates the table automatically in double quotes around column for every DDL.
Any help on it would be much appreciated ?