MySQL ADDTIME() Function

MySQL ADDTIME() Function

MySQL ADDTIME() function; In this tutorial, we are going to demonstrate to you how to use addtime() function with the help of examples.

MySQL ADDTIME() Function

MySQL ADDTIME() works to add a specified amount of time or DateTime expression.

Syntax

The addtime() function basic syntax is:

ADDTIME(first,second)

The addtime() function required two parameters. First, param is the original date/time value, and the second param is the amount of time you want to add to it.

MySQL ADDTIME Function Examples

The following are list examples that help you understand the use of this MySQL ADDTIME function.

Example-1 Basic Usage

Let’s take the first example of addtime() :

SELECT ADDTIME('01:00:00', '03:40:00') AS Result;

Output-1

+----------+
| Result   |
+----------+
| 04:40:00 |
+----------+

So the first param is increased by the amount of the second param.

Example-2

We take the next example of addtime() with MySQL NOW().

SELECT ADDTIME(now(), '02:00:00') AS result

Output-2

+----------+
| Result   |
+----------+
| 12:40:00 |
+----------+

Using addtime(), we have added 2 hours in the current time.

Example-3 Fractional Seconds

The time value can have a fractional seconds part if required:

SELECT ADDTIME('01:00:00.000000', '03:40:00.123456') AS Result;

Output-3

+-----------------+
| Result          |
+-----------------+
| 04:40:00.123456 |
+-----------------+

Example-4 With DateTime

Using the below MySQL addtime() example, you can also use it to increment date values:

SELECT ADDTIME('2019-11-01 00:00:00', '10 04:35:59') AS Result;

Output-4

+---------------------+
| Result              |
+---------------------+
| 2019-11-11 04:35:59 |
+---------------------+

So, in this case, we increased the day component as well as the time component.

Example-5 MySQL Database

Let’s take another example with the MySQL database. We will add 5 hours in current time and fetch employees data from database table employees.

 SELECT * 
 FROM employees 
 WHERE  start_time > ADDTIME(now(), '05:00:00')

Conclusion

Here, you have learned how to use MySQL ADDTIME() function with various examples.

Recommended MySQL Tutorials

If you have any questions or thoughts to share, use the comment form below to reach us.

AuthorAdmin

Greetings, I'm Devendra Dode, a full-stack developer, entrepreneur, and the proud owner of Tutsmake.com. My passion lies in crafting informative tutorials and offering valuable tips to assist fellow developers on their coding journey. Within my content, I cover a spectrum of technologies, including PHP, Python, JavaScript, jQuery, Laravel, Livewire, CodeIgniter, Node.js, Express.js, Vue.js, Angular.js, React.js, MySQL, MongoDB, REST APIs, Windows, XAMPP, Linux, Ubuntu, Amazon AWS, Composer, SEO, WordPress, SSL, and Bootstrap. Whether you're starting out or looking for advanced examples, I provide step-by-step guides and practical demonstrations to make your learning experience seamless. Let's explore the diverse realms of coding together.

Leave a Reply

Your email address will not be published. Required fields are marked *