Ken Johanson skrev:
> Has your experience with PG been different? If so I presume you have
> have found a config that allows?:
>
> SELECT
> pers.firstName,
> pers.lastname,
As long as you don't create the columns using quotes you can use that
kind of names. For example
CREATE TABLE foo (BAR int);
INSERT INTO foo VALUES (42);
SELECT BaR, bar, BAR, "bar" FROM foo;
But using "Bar" wont work.
/Dennis