I already have a database created by postgresql (provided by another administrator than me), the command is created as shown below.
CREATE TABLE "Districts" (
"Name" character varying(500),
"ProvinceCode" text
);
The query Insert value to my table as follows:
Insert into Districts (Name,ProvinceCode) values ("Abc","Xyz"); `ERROR: relation "districts" does not exist`
I have also tried:
Insert into "Districts" (Name,ProvinceCode) values ("Abc","Xyz"); `ERROR: column "name" of relation "Districts" does not exist`
And:
Insert into "Districts" ("Name","ProvinceCode") values ("Abc","Xyz"); `ERROR: column "Abc" does not exist`
I do not know how the syntax is correct. I really need someone to help.