MySQL CURRENT TIME Function Example

MySQL CURRENT TIME Function Example

MySQL CURRENT TIME function; Through this tutorial, you will learn how to use MySQL current time function with help of examples. When you want to get the current time in MySQL queries that time you can use the easily uses the current time.

MySQL CURRENT_TIME() Function

The MySQL CURRENT_TIME function gets the current time. It is returned the value format as “HH-MM-SS” (string) or as HHMMSS.

In other words, the CURRENT_TIME function is used to return the current time.

Note:

This function is a synonym for CURTIME () that gets the current time, so you can choose which function you want to use.

Both functions return the current time as values ​​in HH: MM: SS ‘or HHMMSS format, depending on whether you want to the function is used in a string or numerical context.

Syntax

The CURRENT_TIME() function syntax is:

CURRENT_TIME
=================OR================
CURRENT_TIME([optional])

The (optional)  an argument can be used to provide the fractional seconds precision. If provided, the return value will include fractional seconds up to the number provided. You can specify a optionalvalue between 0 and 6.

Example-1

Let’s take the first example of current_time() function of MySQL is below:

SELECT CURRENT_TIME;

Output-1

+--------------+
| CURRENT_TIME |
+--------------+
| 11:02:42     |
+--------------+

Example-2

Now we take next example of current_time() with curtime() function, see the example below:

 SELECT 
 CURRENT_TIME,
 CURRENT_TIME(),
 CURTIME();

Result:

+--------------+----------------+-----------+
| CURRENT_TIME | CURRENT_TIME() | CURTIME() |
+--------------+----------------+-----------+
| 11:05:06     | 11:05:06       | 11:05:06  |
+--------------+----------------+-----------+

Example-3

Let’s take another example with the MySQL database. We will fetch employees’ data from database table employees who have start_time greater than the current time.

  SELECT * 
  FROM employees 
  WHERE  start_time > CURRENT_TIME()

Example-4

We take next example of current_time() using numeric context:

SELECT CURRENT_TIME + 0;

Output-4

+------------------+
| CURRENT_TIME + 0 |
+------------------+
|           100425 |
+------------------+

In the above example, we have added zero to the time.

Conclusion

Here, you have learned how to use MySQL CURRENT_TIME() 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 *