When I used Psql,
I create new view,
=>CREATE VIEW "teen customer" AS SELECT cusname FROM "latest customer"
=>WHERE age < 17;
CREATE
but when I try to use "teen customer" view, use statement below :
=>SELECT * FROM "teen customer";
ERROR: nodeRead: Badtype 0
ERROR: nodeRead: Badtype 0
I found E
When I used psql,
I create new view,
=>CREATE VIEW "teen customer" AS SELECT name FROM "latest customer"
=>WHERE age < 17;
CREATE
but when I try to use "teen customer" view, use statement below :
=>SELECT * FROM "teen customer";
ERROR: nodeRead: Badtype 0
ERROR: nodeRead: Badtype 0
I found Erro