Computer Science, asked by anuragkumarSwag4271, 1 year ago

How to add 30 minutes to datetime in MySQL?

Answers

Answered by omegads04
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