Ver Mensaje Individual
  #3 (permalink)  
Antiguo 29/09/2004, 12:41
Avatar de Vice
Vice
 
Fecha de Ingreso: agosto-2003
Mensajes: 613
Antigüedad: 21 años, 5 meses
Puntos: 2
Con el CASE puedes probar a hacerlo así (en mysql).
Código:
update tabla
set campo = (case campo where "B" then "A" when "C" then "B" when "A" then "C" END)
where campo2 ="Enero" and campo in ("A","B","C")
Un saludo.