I have a table called rainfall
. It has 2 columns (sensorID, area, time, rainfall, redalert)
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
x
34
34
1
import mysql.connector
2
import random
3
import datetime
4
import time
5
6
7
MINTIME = datetime.datetime(2020,4,1,0,0,0)
8
MAXTIME = datetime.datetime(2020,7,1,0,0,0)
9
10
mintime_str = int(time.mktime(MINTIME.timetuple())) #convert date to INT
11
maxtime_str = int(time.mktime(MAXTIME.timetuple())) #convert date to INT
12
13
no_steps = (maxtime_str - mintime_str)//(5*6) #state the number of minutes interval to 5 minutes
14
15
sql = "UPDATE rainfall SET date = %s"
16
rand = ''
17
18
for RECORD in range(108):
19
random_slot = random.randint(0, no_steps)
20
random_ts = mintime_str + 5*60 * random_slot
21
RANDOMTIME = datetime.datetime.fromtimestamp(random_ts)
22
rand = datetime.datetime.strftime(RANDOMTIME, '%H:%M')
23
24
25
val = (rand,)
26
27
28
mycursor.execute(sql, val)
29
30
raindb.commit()
31
32
print(mycursor.rowcount, "record(s) affected")
33
34
The problem is that this code fill all rows in time with 1 value only:
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
1
7
1
update rainfall
2
set time = concat(
3
lpad(floor(rand() * 24), 2, '0'),
4
':',
5
lpad(floor(rand() * 12) * 5, 2, '0')
6
);
7