

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Select current time with MySQL now() and convert it to GMT 0?
You can use utc_timestamp() for this. Following is the syntax −
SELECT utc_timestamp();
Let us check the current time using now().
Following is the query −
mysql> select now();
This will produce the following output −
+---------------------+ | now() | +---------------------+ | 2019-04-11 17:50:05 | +---------------------+ 1 row in set (0.00 sec)
Following is the query to get GMT 0 −
mysql> SELECT utc_timestamp();
This will produce the following output −
+---------------------+ | utc_timestamp() | +---------------------+ | 2019-04-11 12:20:08 | +---------------------+ 1 row in set (0.00 sec)
- Related Questions & Answers
- How to insert current date/ time using now() in a field with MySQL?
- Java Program to Convert the local Time to GMT
- GMT Time in Perl
- MySQL select * and find record with current date
- Get the time difference and convert it to hours in MySQL?
- Set a MySQL field with the current date (UNIX_TIMESTAMP(now))
- Select records from MySQL NOW() -1 Day?
- Convert MySQL null to 0?
- MySQL query to select records with a particular date and time?
- Calling NOW() function to fetch current date records in MySQL?
- Set current date and time to timestamp in MySQL
- Select a field and if it's null, select another with MySQL?
- Convert the Current Time to a java.sql.Date Object
- Select rows from a table with date between 90 days ago and now in MySQL
- MySQL - Insert current date/time?
Advertisements