Hi-
Table TEST
id width Lengh
1 0.0 20.0
2 2.3 1.00
3 0.0 23.0
4 1.9 11.0
I would like to update field "Width" with data in "Length" when Width = 0 and Lengh >0
then I also want to reset the lengh to blank after that, can you please advise how to do this.
What I have so far is
UPDATE TEST
SET width = lengh
SET lengh = '' ----Is is okay to do this?
where width = 0 and length > 0
Thanks.
Dee