To je možné :-
UPDATE myTable SET col1 = 5,
col2 = (@tempVariable:[email protected]+1) // to increment
Nastavení celého čísla (nikoli přírůstku)
UPDATE myTable SET col1 = 5,
col2 = (@tempVariable:=100) // to assign any integer
To je možné :-
UPDATE myTable SET col1 = 5,
col2 = (@tempVariable:[email protected]+1) // to increment
Nastavení celého čísla (nikoli přírůstku)
UPDATE myTable SET col1 = 5,
col2 = (@tempVariable:=100) // to assign any integer