Re: [SQL] Why wont this update work?

From: Chris Bitmead <chris(dot)bitmead(at)bigfoot(dot)com>
To:
Cc: pgsql-sql(at)postgreSQL(dot)org
Subject: Re: [SQL] Why wont this update work?
Date: 1999-05-19 05:08:18
Message-ID: 37424742.925A3EA3@bigfoot.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql


Well "language" is an SQL reserved word. In Postgres it is a
non-reserved key word, so it's probably not the problem but it may be
worth seeing if changing the field name helps.

Robert Chalmers wrote:
>
> Hi,
> trying to get this to work with pgsql, but it refuses to do anything...
>
> the table is called catalog. The field is called language and is a
> varchar(3) field.
> 81 of the records have the letter 'E' in the language field. i want to
> put 'NoD' in the rest.
>
> UPDATE catalog
> SET language = 'NoD'
> WHERE NOT language = 'E';
>
> nor does
>
> UPDATE catalog
> SET language = 'NoD'
> WHERE language = 'NULL'; ........ or NULL and so on.
>
> I can change the 81 letter 'E's to anything I like, but can not UPDATE the
> blank fields..
>
> can anyone tell me what I am missing here please?
>
> Thanks
> Bob
>
> --- http://4qir.quantum-radio.net.au - Where Only The Dedicated Survive!
> 4QIR Quantum Radio. Bringing you the original sounds of AFVN, with some of
> the
> original DJ's - back on air - and supporting not only the original Vets, in
> comprehensive AFVN Archives, but putting together segments for the fighting
> men and
> women of todays services all around the world. World Music, for people of
> the world.

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Heiko Wilms 1999-05-19 06:56:22 query an array...
Previous Message Robert Chalmers 1999-05-19 04:49:30 Why wont this update work?