Subject Re: [firebird-support] Invert two columns
Author Pierre Y.
If this one don't works :

> UPDATE TEST SET
> V2=V1,
> V1=V2

This one works well :)

UPDATE TEST SET
V2=V2+V1,
V1=V2-V1,
V2=V2-V1

Incredible.

Pierre Y.