I want to update the datetime round to 15 minutes in a MYSQL database table.
For Example:
If the dateTime is 2013-10-08 10:36:00
, I want to convert it into 2013-10-08 10:30:00
Similarly,2013-10-08 10:22:00
to 2013-10-08 10:15:00
I have seen this answer but it converts datetime into seconds and return time only, I want date as well.
Thanks