How to add 30 minutes to datetime in MySQL?
Answers
Answered by
0
Answer: To add minutes to a date time you can use DATE_ADD ( ) function from MySQL . select date_add ( your Column Name , interval 30 minute) from your Table Name ;
Explanation:
Similar questions