Skip to content
Advertisement

MySQL: Update multiple rows with random values

I have a table called rainfall. It has 2 columns (sensorID, area, time, rainfall, redalert)

enter image description here

I want to fill the time column with random times in intervals of 5 minutes (e.g 12:55, 04:30, 07:45) . I managed to get the random times by using this Python code:

JavaScript

The problem is that this code fill all rows in time with 1 value only:

enter image description here

I need different values in each row. It fine if some rows have duplicate time values.

Thanks in advance

Advertisement

Answer

You can do it with SQL only:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement