How would I update a column with a random date in the past 2 weeks using MySQL?
For example (code doesn't actually work):
UPDATE mytable
SET col = sysdate()-rand(1,14);
|
How would I update a column with a random date in the past 2 weeks using MySQL? For example (code doesn't actually work):
| ||||
|
feedback
|
|
You can get a random integer with this expression:
http://dev.mysql.com/doc/refman/5.1/en/mathematical-functions.html Use that to generate a random number of days, hours or minutes (depending on the resolution) and add that number to current date. Full expression would be something like this:
| ||||
|
feedback
|
This sets | |||
|
feedback
|
|
Your main problem is that I can't work out a 1..14 random solution right now, but to get you started, this will pick a random date within the last 10 days:
| |||
|
feedback
|