I encountered this error messages.
Dataclip ErrorERROR: relation "wanteds" does not exist
LINE 1: select * from Wanteds;
Here is my sql query.
select * from Wanteds;
Here is my Schema Explorer.
What is wrong with this?
You need to type table name in double quotes like this
select * from "Wanteds";