SQL problem? - Mailing list pgsql-novice

From cbraden
Subject SQL problem?
Date
Msg-id 430C9EBF.5010905@douglasknight.com
Whole thread Raw
In response to Re: New-B Question #2  (Philip Hallstrom <postgresql@philip.pjkh.com>)
Responses Re: SQL problem?  (Kretschmer Andreas <andreas_kretschmer@despammed.com>)
Re: SQL problem?  (Stephan Szabo <sszabo@megazone.bigpanda.com>)
List pgsql-novice
Folks,

I have a simple table called "adjusters" with only these three columns:

id
adjuster
MonthlyGoal

==========COPIED FROM PGAdminIII=============
CREATE TABLE public.adjusters
(
id int4 NOT NULL DEFAULT nextval('adjusters_id_key'::text),
"Adjuster" varchar(50),
"MonthlyGoal" varchar(50),
CONSTRAINT adjusters_pkey PRIMARY KEY (id)
) WITH OIDS;
==============================================

The SQL "SELECT * FROM adjusters" works perfectly

The SQL "SELECT * FROM adjusters ORDER BY Adjuster ASC" results in this
message:
ERROR: Attribute "adjuster" not found


That SQL seems OK to me, but I use mySQL much more than Postgre, so what
do I know?

Anyway, if you see whatever-it-is which is holding me up, please let me
know.

Thanks,
Char-Lez Braden

pgsql-novice by date:

Previous
From: Josh Berkus
Date:
Subject: Re: Transaction Questions
Next
From: Kretschmer Andreas
Date:
Subject: Re: SQL problem?