sql update each row with random number code example
Example: how to update random rows in sql
UPDATE daTable
SET current = current + 1
ORDER
BY RAND() LIMIT 1
UPDATE daTable
SET current = current + 1
ORDER
BY RAND() LIMIT 1