
- Learn MySQL
- MySQL - Home
- MySQL - Introduction
- MySQL - Installation
- MySQL - Administration
- MySQL - PHP Syntax
- MySQL - Connection
- MySQL - Create Database
- MySQL - Drop Database
- MySQL - Select Database
- MySQL - Data Types
- MySQL - Create Tables
- MySQL - Drop Tables
- MySQL - Insert Query
- MySQL - Select Query
- MySQL - Where Clause
- MySQL - Update Query
- MySQL - Delete Query
- MySQL - Like Clause
- MySQL - Sorting Results
- MySQL - Using Join
- MySQL - NULL Values
- MySQL - Regexps
- MySQL - Transactions
- MySQL - Alter Command
- MySQL - Indexes
- MySQL - Temporary Tables
- MySQL - Clone Tables
- MySQL - Database Info
- MySQL - Using Sequences
- MySQL - Handling Duplicates
- MySQL - SQL Injection
- MySQL - Database Export
- MySQL - Database Import
How to insert current date/time in MySQL?
To insert current date/ time in MySQL, use the now() function. Let us now see an example.
At first, we will create a table. The CREATE command is used to create a table.
mysql > create table CurrentDateTime -> ( -> CurrentTime datetime -> ); Query OK, 0 rows affected (1.14 sec)
Syntax to insert the current date/time with the help of insert command and now()
mysql> insert into CurrentDateTime values(now()); Query OK, 1 row affected (0.11 sec)
To check that the current date/ time is inserted in the table or not, use the select command.
mysql> select *from CurrentDateTime;
The following is the output that displays we have successfully inserted current date/ time.
+---------------------+ | CurrentTime | +---------------------+ | 2018-10-18 13:14:30 | +---------------------+ 1 row in set (0.00 sec)
- Related Articles
- MySQL - Insert current date/time?
- MySQL query to insert current date plus specific time?
- How to insert current date/ time using now() in a field with MySQL?
- Insert current time minus 1 hour to already inserted date-time records in MYSQL
- Insert current date to the database in MySQL?
- How to insert current date and time in a database using JDBC?
- Insert current date in datetime format MySQL?
- How can we insert current date and time automatically on inserting values in other columns in MySQL?
- Set current date and time to timestamp in MySQL
- How can we insert current date automatically in a column of MySQL table?
- How to get current time and date in C++?
- How to get current date and time in Python?
- How to get current date and time in JavaScript?
- How to insert date in single quotes with MySQL date formats?
- How to set default date time as system date time in MySQL?

Advertisements