5 lines
211 B
MySQL
5 lines
211 B
MySQL
|
|
update NAZIONE SET flgAttiva=1 where costoSpedizione>0;
|
||
|
|
update NAZIONE SET flgAttiva=0 where costoSpedizione=0;
|
||
|
|
|
||
|
|
##scorporo l'iva
|
||
|
|
update NAZIONE set costoSpedizione=costoSpedizione/1.22 where costoSpedizione >0;
|