MySQL CURTIME() Function with Example

MySQL CURTIME() Function with Example

MySQL CURTIME() function; In this tutorial, we will learn how to use MySQL CURTIME() function with the help of examples.

If you want to get the current time in MySQL queries that time you need to use MySQL CURTIME().

MySQL CURTIME() Function

Using the MySQL CURTIME function is get the current time.

In other words, the CURTIME function is used to return the current time. MySQL curtime () is equivalent to 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 CURTIME() function syntax is:

CURTIME
=================OR================
CURTIME([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 CURTIME() function of MySQL is below:

SELECT CURTIME;

Output-1

+--------------+
| CURTIME      |
+--------------+
| 11:02:42     |
+--------------+

Example-2

Now we take next example of CURTIME() with CURRENT_TIME() function, see the example below:

 SELECT 
 CURTIME,
 CURRENT_TIME(),
 CURTIME();

Result:

+--------------+----------------+-----------+
| CURTIME      |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 > CURTIME()

Example-4

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

SELECT CURTIME + 0;

Output-4

+------------------+
| CURTIME + 0      |
+------------------+
|           100425 |
+------------------+

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

Conclusion

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