Cuestión : Pregunta del Sql para el acceso

Tengo la pregunta siguiente:

UPDATE LSInvoice DETERMINADO LSInvoice.UPC = “99999900202030 "
WHERE (((LSInvoice.UPC) = " 076711005351”))
SET LSInvoice.UPC = “99999900202029 "
WHERE (((LSInvoice.UPC) = " 076711005344”))
SET LSInvoice.UPC = “99999900202031 "
WHERE (((LSInvoice.UPC) = " 076711005368”))
SET LSInvoice.UPC = “99999900202032 "
WHERE (((LSInvoice.UPC) = " 076711005375”)); el

That me da un error de sintaxis operador que falta. ¿Qué he hecho mal?
class= del

Respuesta : Pregunta del Sql para el acceso

Usted puede poner al día solamente un valor a la vez si usted está intentando hacer el multple donde las cláusulas, o le podría utilizar llamadas de función jerarquizadas de IIF () o usted podría utilizar la función de interruptor:

ACTUALIZACIÓN LSInvoice
FIJAR LSInvoice.UPC = el interruptor (LSInvoice.UPC= " 076711005351 ", “99999900202030”,
                                             LSInvoice.UPC= " 076711005344 ", “99999900202029”,
                                             LSInvoice.UPC= " 076711005368 ", “99999900202031”,
                                             LSInvoice.UPC= " 076711005375 ", “99999900202032”)
EN DONDE LSInvoice.UPC (“076711005351”, “076711005344”, “076711005368”, “076711005375”)
Otras soluciones  
 
programming4us programming4us