Why do I need to add "" to a table when doing a query? I've checked the examples and I found no one has " around the table names. It is something with the configuration?
If I do:
 
select * from users;
ERROR:  relation "users" does not exist
 
but:
select * from "Users";
returns all the data I want...
 
Right now I'm using postgresql 8.0.1

Reply via email to