I am trying to add a random float to an existing value for an entire column in SQLite
Adding a number to an existing shouldn't be hard and UPDATE myTable SET Column1=Column1+1
should work. If I am correct it will get each value in column1 and add 1 to it.
The problem is getting the random number, my aim is to have something similar to this
UPDATE mytable SET Column1=(Column1 + (RAND Between 0.5 AND 0.8));
so each row has a different random float added that's been generated between 2 floats added to it.
My issue is that the only reference I have found for random under SQLite is that the random function generates an integer.