incrémenter un champ en un coup ... [SQL] - Programmation
Marsh Posté le 24-06-2002 à 11:33:30
update maTable set monChamp = monChamp + 1 where id = '1';
Marsh Posté le 24-06-2002 à 12:18:30
sérieux ??
chuis parfois
Marsh Posté le 24-06-2002 à 14:39:51
update maTable set monChamp = monChamp+1 where id = '1';
update maTable set monChamp = monChamp+$nombre where id = '1';
update maTable set monChamp = '$nombre' where id = '1';
Marsh Posté le 24-06-2002 à 11:28:13
salut
j'iamerais savoir si c'est possible en mysql d'incrémenter un champ d'une seule requête au lieu de faire select le_champ puis update le_champ = le_champ+1 ???