Du skapade förmodligen din tabell så:
CREATE TABLE "countryTable" (
id SERIAL NOT NULL,
country TEXT NOT NULL,
PRIMARY KEY(id)
);
Som skapar ett tabellutrymme insvept i ""
, du bör inte använda dubbla citattecken i allmänhet i postgres för tabellnamn eller kolumner, försök utan dubbla citattecken:
CREATE TABLE countryTable (
id SERIAL NOT NULL,
country TEXT NOT NULL,
PRIMARY KEY(id)
);
Sedan kan du använda den här frågan som du redan har SELECT * FROM countryTable