you can simply manipulate data using SQL. however if you want to move the value of field 1 to filed 2, and the value of field 2 to field 1 (ie transpose the values in field 1 to field2) in one operation you would need some other mechanism...
if you want to blank field 1 you could
update mytable set field2=field1, field1=""