Update set ?

Fermé
anes_dz Messages postés 4 Date d'inscription samedi 23 mai 2015 Statut Membre Dernière intervention 17 avril 2018 - 26 mai 2015 à 22:33
 Utilisateur anonyme - 26 mai 2015 à 23:31
slt ja'ai fait un update a la table produit pour changer tous les prix
en multuplier x 100
UPDATE `produit` SET `id_pro`=[`id_pro*100]
mais il reste afiche r"""#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '[`id_pro`*100]' at line 1 """
A voir également:

1 réponse

Utilisateur anonyme
26 mai 2015 à 23:31
Bonsoir

Il ne faut pas de [ ] dans les requêtes en mySQL :
UPDATE produit SET id_pro=id_pro*100
0