Home > database >  Random number does not change
Random number does not change

Time:10-17

My replacement statements
Update the Content set info=replace (info, 'replace', CStr (Int (* Rnd (3311-1 + 1) + 1)))

Content
1111111 (replace) 222222 (replace) 33333 (replace)

Now the substitution effect of
(can replace now, also can generate a random number, but the replacement all the content is the same)
1111111 (963) 222222 (963) 33333 (963)

To achieve the effect of
(here, the effect of every encounter replace will generate a random number)
1111111 (53), 222222 (698) 33333 (2512)
  • Related