On Sun, Feb 09, 2003 at 09:18:05AM -0500, Sill-II, Stephen wrote:
> Thanks much! After much experimentation, I figured it out. I remember
> reading in the postgres oreily book that if you don't quote the identifiers,
> that it converts them all to lowercase for processing. Does the dash in the
> name also require the name to be quoted?
Yup, so the expression parser can differentiate between a-b (column"a"
- column "b") and a-b (column named "a-b").
Ross