Subject Re: [ib-support] how to replaceing values of to fields in one UPDATE
Author Helen Borrie
At 01:06 AM 26/05/2003 +0200, you wrote:
>how to replaceing values of to fields in one UPDATE

The syntax is just a comma-separated list of SET clauses:

update MyTable
set field1 = 'avalue',
set field2 = 'bvalue',
set fieldn = .................

heLen