Trying out PostgreSQL for the first time and running into a minor
problem.
I created two tables one with the Add table wizard the other hard-core
script.
Script made table:
Select * from Example
--This works as expected
Select * from EXAMPLE
--This works as expected
Wizard made table:
Select * from Example
--ERROR: relation "Example" does not exist
Select * from "Example"
--This works as expected
The wizard table has created a case sensitive restriction on me and
forced me to use quotes. How do I turn this off?