Subject | Re: [ib-support] how to replaceing values of to fields in one UPDATE |
---|---|
Author | Helen Borrie |
Post date | 2003-05-25T22:30:57Z |
At 01:06 AM 26/05/2003 +0200, you wrote:
update MyTable
set field1 = 'avalue',
set field2 = 'bvalue',
set fieldn = .................
heLen
>how to replaceing values of to fields in one UPDATEThe syntax is just a comma-separated list of SET clauses:
update MyTable
set field1 = 'avalue',
set field2 = 'bvalue',
set fieldn = .................
heLen