C'est possible :-
UPDATE myTable SET col1 = 5,
col2 = (@tempVariable:[email protected]+1) // to increment
Pour définir un entier (pas d'incrément)
UPDATE myTable SET col1 = 5,
col2 = (@tempVariable:=100) // to assign any integer
C'est possible :-
UPDATE myTable SET col1 = 5,
col2 = (@tempVariable:[email protected]+1) // to increment
Pour définir un entier (pas d'incrément)
UPDATE myTable SET col1 = 5,
col2 = (@tempVariable:=100) // to assign any integer